-
-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4538 from mwichmann/pins
Change CI provisioning
- Loading branch information
Showing
8 changed files
with
111 additions
and
26 deletions.
There are no files selected for viewing
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# 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: | ||
|
||
jobs: | ||
runtest-win32: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.6 | ||
|
||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: '3.12' | ||
|
||
- name: Install dependencies including ninja | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install -r requirements-dev.txt | ||
- name: runtest | ||
run: | | ||
python runtest.py --all --exclude-list=windows_ci_skip.txt --time --jobs=4 | ||
- name: Archive Failed tests | ||
uses: actions/upload-artifact@v4.3.3 | ||
with: | ||
name: windows-failed-tests | ||
path: | | ||
failed_tests.log |
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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# temporarily skip this in GitHub Windows runner | ||
test/CPPDEFINES/pkg-config.py | ||
test/Interactive/added-include.py | ||
test/Interactive/Alias.py | ||
test/Interactive/basic.py | ||
test/Interactive/cache-debug.py | ||
test/Interactive/cache-disable.py | ||
test/Interactive/cache-force.py | ||
test/Interactive/cache-show.py | ||
test/Interactive/clean.py | ||
test/Interactive/configure.py | ||
test/Interactive/Default-None.py | ||
test/Interactive/Default.py | ||
test/Interactive/exit.py | ||
test/Interactive/failure.py | ||
test/Interactive/help.py | ||
test/Interactive/implicit-VariantDir.py | ||
test/Interactive/option--Q.py | ||
test/Interactive/option-i.py | ||
test/Interactive/option-j.py | ||
test/Interactive/option-k.py | ||
test/Interactive/option-n.py | ||
test/Interactive/option-s.py | ||
test/Interactive/repeat-line.py | ||
test/Interactive/shell.py | ||
test/Interactive/tree.py | ||
test/Interactive/unknown-command.py | ||
test/Interactive/variant_dir.py | ||
test/MSVC/msvc.py | ||
test/packaging/msi/explicit-target.py | ||
test/packaging/msi/file-placement.py | ||
test/packaging/msi/package.py | ||
test/packaging/tar/xz_packaging.py | ||
test/scons-time/run/config/python.py | ||
test/scons-time/run/option/python.py | ||
test/scons-time/run/option/quiet.py | ||
test/scons-time/run/option/verbose.py | ||
test/sconsign/script/no-SConsignFile.py | ||
test/sconsign/script/SConsignFile.py | ||
test/sconsign/script/Signatures.py | ||
|