aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cygwin.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/cygwin.yml')
-rw-r--r--.github/workflows/cygwin.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml
index aaad1f0..9406051 100644
--- a/.github/workflows/cygwin.yml
+++ b/.github/workflows/cygwin.yml
@@ -76,7 +76,7 @@ jobs:
- name: Run pip
run: |
export PATH=/usr/bin:/usr/local/bin:$(cygpath ${SYSTEMROOT})/system32
- python3 -m pip --disable-pip-version-check install gcovr jsonschema pefile pytest pytest-subtests pytest-xdist coverage codecov
+ python3 -m pip --disable-pip-version-check install gcovr jsonschema pefile pytest pytest-subtests pytest-xdist coverage
shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'
- uses: actions/cache/save@v3
@@ -102,8 +102,16 @@ jobs:
# test log should be saved on failure
if: ${{ !cancelled() }}
- - name: Upload coverage report
+ - name: Aggregate coverage reports
run: |
export PATH=/usr/bin:/usr/local/bin:$(cygpath ${SYSTEMROOT})/system32
- ./ci/upload_cov.sh "${{ matrix.NAME }}"
+ ./ci/combine_cov.sh
shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'
+
+ - name: Upload coverage report
+ uses: codecov/codecov-action@v3
+ with:
+ files: .coverage/coverage.xml
+ name: "${{ matrix.NAME }}"
+ fail_ci_if_error: true
+ verbose: true