forked from linkedin/venice
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] Add test reporter in E2E CI workflow
- Loading branch information
Sourav Maji
committed
Oct 29, 2024
1 parent
ab3791c
commit 1593ffa
Showing
2 changed files
with
330 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,13 +34,16 @@ | |
find . -path "**/build/reports/*" -or -path "**/build/test-results/*" > artifacts.list | ||
rsync -R --files-from=artifacts.list . ${{ github.job }}-artifacts | ||
tar -zcvf ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz ${{ github.job }}-artifacts | ||
# - name: Generate Test Reports | ||
# if: success() || failure() | ||
# uses: dorny/[email protected] | ||
# with: | ||
# name: ${{ github.job }} Test Reports # Name where it report the test results | ||
# path: '**/TEST-*.xml' | ||
# reporter: java-junit | ||
- name: Generate Test Reports | ||
if: success() || failure() | ||
uses: dorny/[email protected] | ||
with: | ||
name: ${{ github.job }} Test Reports # Name where it report the test results | ||
path: '**/TEST-*.xml' | ||
fail-on-error: 'false' | ||
list-tests: 'failed' | ||
list-suites: 'failed' | ||
reporter: java-junit | ||
- name: Upload Build Artifacts | ||
if: success() || failure() | ||
uses: actions/upload-artifact@v3 | ||
|
Oops, something went wrong.