From cd7becc3f450b5c7453b15bb5566908293a1253a Mon Sep 17 00:00:00 2001 From: Eggbertx Date: Sun, 3 Mar 2024 15:47:50 -0800 Subject: [PATCH] (try to) simplify test reporting --- .github/workflows/cmake-ctest.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml index 5576205..75160c3 100644 --- a/.github/workflows/cmake-ctest.yml +++ b/.github/workflows/cmake-ctest.yml @@ -46,14 +46,8 @@ jobs: run: ctest -C ${{env.BUILD_TYPE}} --output-junit test-report.xml - name: Publish test report - if: ${{ !cancelled() }} - uses: ./.github/actions/publish-test-report + if: success() || failure() with: - report-name: oc8 - report-path: build/test-report.xml - - - name: "Upload Unit Test Reports" - if: ${{ !cancelled() }} - uses: ./.github/actions/upload-test-report - with: - report-name: ${{ env.REPORT_NAME }} \ No newline at end of file + name: CTest Tests + path: ./build/test-report.xml + reporter: jest-junit \ No newline at end of file