ci: move test report to main dir and upload single artifact
This commit is contained in:
parent
d3c695b566
commit
c731f1fb1e
1 changed files with 7 additions and 9 deletions
|
|
@ -36,20 +36,18 @@ jobs:
|
||||||
RUSTYPIPE_CACHE: "${{ secrets.RUSTYPIPE_CACHE }}"
|
RUSTYPIPE_CACHE: "${{ secrets.RUSTYPIPE_CACHE }}"
|
||||||
YT_AUTHENTICATED: "${{ github.event_name != 'pull_request' }}" # no access to secrets for PRs
|
YT_AUTHENTICATED: "${{ github.event_name != 'pull_request' }}" # no access to secrets for PRs
|
||||||
|
|
||||||
|
- name: Move test report
|
||||||
|
if: always()
|
||||||
|
run: mv target/nextest/ci/junit.xml junit.xml || true
|
||||||
|
|
||||||
- name: 💌 Upload test report
|
- name: 💌 Upload test report
|
||||||
if: always()
|
if: always()
|
||||||
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: test
|
name: test
|
||||||
path: target/nextest/ci/junit.xml
|
path: |
|
||||||
|
junit.xml
|
||||||
- name: 💌 Upload RustyPipe report
|
rustypipe_reports
|
||||||
if: always()
|
|
||||||
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: test
|
|
||||||
path: rustypipe_reports
|
|
||||||
if-no-files-found: ignore
|
|
||||||
|
|
||||||
- name: 🔗 Artifactview PR comment
|
- name: 🔗 Artifactview PR comment
|
||||||
if: ${{ always() && github.event_name == 'pull_request' }}
|
if: ${{ always() && github.event_name == 'pull_request' }}
|
||||||
|
|
|
||||||
Reference in a new issue