CI: add coverage on Windows (#32610)

Co-authored-by: Tom Scogland <scogland1@llnl.gov>
This commit is contained in:
Massimiliano Culpo 2022-09-16 14:38:29 +02:00 committed by GitHub
parent a0c7209dc1
commit 0f26931628
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,14 +23,22 @@ jobs:
python-version: 3.9 python-version: 3.9
- name: Install Python packages - name: Install Python packages
run: | run: |
python -m pip install --upgrade pip six pywin32 setuptools codecov coverage python -m pip install --upgrade pip six pywin32 setuptools codecov pytest-cov
- name: Create local develop - name: Create local develop
run: | run: |
.\spack\.github\workflows\setup_git.ps1 .\spack\.github\workflows\setup_git.ps1
- name: Unit Test - name: Unit Test
run: | run: |
echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml
spack unit-test --verbose --ignore=lib/spack/spack/test/cmd cd spack
dir
(Get-Item '.\lib\spack\docs\_spack_root').Delete()
spack unit-test --verbose --cov --cov-config=pyproject.toml --ignore=lib/spack/spack/test/cmd
coverage combine -a
coverage xml
- uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
with:
flags: unittests,windows
unit-tests-cmd: unit-tests-cmd:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
@ -42,14 +50,21 @@ jobs:
python-version: 3.9 python-version: 3.9
- name: Install Python packages - name: Install Python packages
run: | run: |
python -m pip install --upgrade pip six pywin32 setuptools codecov coverage python -m pip install --upgrade pip six pywin32 setuptools codecov coverage pytest-cov
- name: Create local develop - name: Create local develop
run: | run: |
.\spack\.github\workflows\setup_git.ps1 .\spack\.github\workflows\setup_git.ps1
- name: Command Unit Test - name: Command Unit Test
run: | run: |
echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml 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 --verbose cd spack
(Get-Item '.\lib\spack\docs\_spack_root').Delete()
spack unit-test --verbose --cov --cov-config=pyproject.toml lib/spack/spack/test/cmd
coverage combine -a
coverage xml
- uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
with:
flags: unittests,windows
build-abseil: build-abseil:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
@ -85,7 +100,7 @@ jobs:
python-version: 3.9 python-version: 3.9
- name: Install Python packages - name: Install Python packages
run: | run: |
python -m pip install --upgrade pip six pywin32 setuptools codecov coverage python -m pip install --upgrade pip six pywin32 setuptools
- name: Add Light and Candle to Path - name: Add Light and Candle to Path
run: | run: |
$env:WIX >> $GITHUB_PATH $env:WIX >> $GITHUB_PATH
@ -116,7 +131,7 @@ jobs:
python-version: 3.9 python-version: 3.9
- name: Install Python packages - name: Install Python packages
run: | run: |
python -m pip install --upgrade pip six pywin32 setuptools codecov coverage python -m pip install --upgrade pip six pywin32 setuptools
- name: Setup installer directory - name: Setup installer directory
run: | run: |
mkdir -p spack_installer mkdir -p spack_installer