diff --git a/.github/workflows/buildship.yml b/.github/workflows/buildship.yml index dd886c2e76..5c0d1eb0f5 100644 --- a/.github/workflows/buildship.yml +++ b/.github/workflows/buildship.yml @@ -57,13 +57,13 @@ jobs: run: | cd m3-sys/m3tests cm3 -DHTML - - name: Save compiler validation report - uses: actions/upload-artifact@v2 + - name: Generate test report + uses: dorny/test-reporter@v1 with: - name: ${{ format('m3tests-{0}-{1}', matrix.os, matrix.backend) }} - path: | - m3-sys/m3tests/m3tests.html - m3-sys/m3tests/m3tests-results.xml - if-no-files-found: error + name: ${{ format('m3tests ({0}, {1})', matrix.os, matrix.backend) }} + fail-on-error: false + max-annotations: 49 + path: m3-sys/m3tests/m3tests-results.xml + reporter: java-junit # vim: expandtab diff --git a/.github/workflows/m3tests.yml b/.github/workflows/m3tests.yml deleted file mode 100644 index f23fb1716e..0000000000 --- a/.github/workflows/m3tests.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: m3tests results -on: - workflow_run: - workflows: ["buildship integration"] - type: [completed] -jobs: - report: - runs-on: ubuntu-20.04 - steps: - - uses: dorny/test-reporter@v1 - with: - artifact: /m3tests-(.*)-(.*)/ - fail-on-error: false - max-annotations: 49 - name: "m3tests ($1, $2)" - path: m3tests-results.xml - reporter: java-junit - -# vim: expandtab