Skip to content

Commit

Permalink
Merge pull request #77 from jflo/testResultsArtifacts
Browse files Browse the repository at this point in the history
Test results artifacts
  • Loading branch information
jflo authored Feb 15, 2024
2 parents 8be243f + ab2c3f5 commit 40a869d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ jobs:
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: acceptance-node-${{matrix.runner_index}}-test-results
path: 'acceptance-tests/tests/build/test-results/acceptanceTest/TEST-*.xml'
path: 'acceptance-tests/tests/build/test-results/**/TEST-*.xml'
- name: Publish Test Report
uses: mikepenz/action-junit-report@5f47764eec0e1c1f19f40c8e60a5ba47e47015c5
if: (success() || failure()) # always run even if the build step fails
with:
report_paths: 'acceptance-tests/tests/build/test-results/acceptanceTest/TEST-*.xml'
report_paths: 'acceptance-tests/tests/build/test-results/**/TEST-*.xml'
annotate_only: true
acceptance-tests:
runs-on: ubuntu-22.04
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/reference-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: reference-tests
on:
workflow_dispatch:
pull_request_target:
branches:
- main
Expand Down Expand Up @@ -111,7 +112,7 @@ jobs:
uses: mikepenz/action-junit-report@5f47764eec0e1c1f19f40c8e60a5ba47e47015c5
if: success() || failure() # always run even if the build step fails
with:
report_paths: '**/build/test-results/referenceTest/TEST-*.xml'
report_paths: '**/build/test-results/referenceTests/TEST-*.xml'
annotate_only: true
reference-tests:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 40a869d

Please sign in to comment.