Add clang, clang++ to default tool search #167
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Full Test Suite on Windows | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
SCONS_CACHE_MSVC_CONFIG: 1 | |
jobs: | |
runtest-win32: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python 3.12 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --progress-bar off --upgrade pip | |
python -m pip install --progress-bar off -r requirements-dev.txt | |
- name: Install Chocolatey packages | |
run: | | |
choco install --yes --no-progress dmd winflexbison3 | |
- name: runtest | |
run: | | |
python runtest.py --all --exclude-list=windows_ci_skip.txt --time --jobs=4 | |
- name: Archive Failed tests | |
uses: actions/[email protected] | |
with: | |
name: windows-failed-tests | |
path: | | |
failed_tests.log |