gci: Disable Junit report processing, it's broken

This commit is contained in:
Christian Decker
2021-01-14 11:34:26 +01:00
parent a097606495
commit 51adde1f90

View File

@@ -75,22 +75,23 @@ jobs:
with:
name: reports-${{ matrix.python-version }}
path: report-*.xml
report:
name: "Publish Unit Tests Results"
needs: build-and-test
runs-on: ubuntu-latest
# the build-and-test job might be skipped, we don't need to run this job then
if: success() || failure()
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
with:
path: artifacts
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1.6
with:
check_name: Unit Test Results
github_token: ${{ secrets.GITHUB_TOKEN }}
files: artifacts/reports-*/report-*.xml
# report:
# name: "Publish Unit Tests Results"
# needs: build-and-test
# runs-on: ubuntu-latest
# # the build-and-test job might be skipped, we don't need to run this job then
# if: success() || failure()
#
# steps:
# - name: Download Artifacts
# uses: actions/download-artifact@v2
# with:
# path: artifacts
#
# - name: Publish Unit Test Results
# uses: EnricoMi/publish-unit-test-result-action@v1.6
# with:
# check_name: Unit Test Results
# github_token: ${{ secrets.GITHUB_TOKEN }}
# files: artifacts/reports-*/report-*.xml