From 63b47619ec6af0046b307c53198ee800a40ee59a Mon Sep 17 00:00:00 2001 From: Juuz <6596629+Juuxel@users.noreply.github.com> Date: Fri, 17 Nov 2023 18:26:44 +0200 Subject: [PATCH] test-push: Remove test reporting --- .github/workflows/test-push.yml | 35 --------------------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/test-push.yml b/.github/workflows/test-push.yml index 61e9f52a..ee873dbc 100644 --- a/.github/workflows/test-push.yml +++ b/.github/workflows/test-push.yml @@ -65,13 +65,6 @@ jobs: env: TEST_WARNING_MODE: fail id: test - - name: Publish test results for report - uses: actions/upload-artifact@v3 - if: ${{ failure() || success() }} - with: - name: Raw Test Results - path: build/test-results/**/*.xml - retention-days: 1 - uses: actions/upload-artifact@v3 if: ${{ failure() }} @@ -106,13 +99,6 @@ jobs: env: TEST_WARNING_MODE: fail id: test - - name: Publish test results for report - uses: actions/upload-artifact@v3 - if: ${{ failure() || success() }} - with: - name: Raw Test Results - path: build/test-results/**/*.xml - retention-days: 1 - uses: actions/upload-artifact@v3 if: ${{ failure() }} @@ -144,30 +130,9 @@ jobs: distribution: 'temurin' - run: ./gradlew test --tests *ReproducibleBuildTest --stacktrace --warning-mode fail - - name: Publish test results for report - uses: actions/upload-artifact@v3 - if: ${{ failure() || success() }} - with: - name: Raw Test Results - path: build/test-results/**/*.xml - retention-days: 1 - uses: actions/upload-artifact@v3 if: ${{ failure() }} with: name: Reproducible Build ${{ matrix.os }} (${{ matrix.java }}) Results path: build/reports/ - - test_report: - runs-on: ubuntu-latest - needs: [run_tests, run_tests_windows, reproducible_build_test] - if: ${{ failure() || success() }} - steps: - - name: Download artifacts - uses: actions/download-artifact@v3 - with: - path: artifacts - - name: Publish test report - uses: EnricoMi/publish-unit-test-result-action@v2 - with: - junit_files: "artifacts/**/*.xml"