diff options
author | John Parent <john.parent@kitware.com> | 2022-03-16 16:41:34 -0400 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2022-03-17 09:01:01 -0700 |
commit | 4aee27816e7101753aeb392e868096236a26d84d (patch) | |
tree | 2a6099f9b5305997e71e397aa2fae7f624786b90 /.github | |
parent | e63b4f752a73a67d24802a21bdf4c8a931216d2e (diff) | |
download | spack-4aee27816e7101753aeb392e868096236a26d84d.tar.gz spack-4aee27816e7101753aeb392e868096236a26d84d.tar.bz2 spack-4aee27816e7101753aeb392e868096236a26d84d.tar.xz spack-4aee27816e7101753aeb392e868096236a26d84d.zip |
Windows Support: Testing Suite integration
Broaden support for execution of the test suite
on Windows.
General bug and review fixups
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/windows_python.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/windows_python.yml b/.github/workflows/windows_python.yml index 0c517eef5f..b45cd716bb 100644 --- a/.github/workflows/windows_python.yml +++ b/.github/workflows/windows_python.yml @@ -3,13 +3,12 @@ name: windows tests on: push: branches: - - features/windows-support - - windows-ci* + - develop + - releases/** pull_request: branches: - - features/windows-support - - windows-ci* - develop + - releases/** defaults: run: shell: @@ -70,7 +69,7 @@ jobs: - name: Unit Test run: | echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml - spack unit-test -x --verbose --ignore=lib/spack/spack/test/cmd + spack unit-test --verbose --ignore=lib/spack/spack/test/cmd unittest-cmd: runs-on: windows-latest steps: @@ -89,7 +88,7 @@ jobs: - name: Command Unit Test run: | echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml - spack unit-test lib/spack/spack/test/cmd -x --verbose + spack unit-test lib/spack/spack/test/cmd --verbose buildtest: runs-on: windows-latest steps: |