From 360aaf5787e8392ba54cbf9743dcb7e70252dc4f Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Thu, 27 Jul 2023 09:49:25 +0100 Subject: [PATCH] download artifact --- .github/workflows/test-results-linux.yml | 10 +++++++++- .github/workflows/test-results-mac.yml | 10 +++++++++- .github/workflows/test-results-windows.yml | 10 +++++++++- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-results-linux.yml b/.github/workflows/test-results-linux.yml index 9e87f3997..0792902a1 100644 --- a/.github/workflows/test-results-linux.yml +++ b/.github/workflows/test-results-linux.yml @@ -23,10 +23,18 @@ jobs: } steps: + - name: Download Linux Test Report + uses: dawidd6/action-download-artifact@v2 + with: + path: Linux + name: ${{matrix.config.artifact-name}} + workflow: ${{ github.event.workflow.id }} + run_id: ${{ github.event.workflow_run.id }} + - name: Test Reporter uses: phoenix-actions/test-reporting@v12 with: artifact: ${{matrix.config.artifact-name}} name: ${{matrix.config.name}} path: "**/My Projects/Torque3D/game/test_detail.xml" - reporter: java-junit + reporter: java-junit diff --git a/.github/workflows/test-results-mac.yml b/.github/workflows/test-results-mac.yml index 692aeb28c..8c55748a1 100644 --- a/.github/workflows/test-results-mac.yml +++ b/.github/workflows/test-results-mac.yml @@ -23,10 +23,18 @@ jobs: } steps: + - name: Download Mac Test Report + uses: dawidd6/action-download-artifact@v2 + with: + path: macOS + name: ${{matrix.config.artifact-name}} + workflow: ${{ github.event.workflow.id }} + run_id: ${{ github.event.workflow_run.id }} + - name: Test Reporter uses: phoenix-actions/test-reporting@v12 with: artifact: ${{matrix.config.artifact-name}} name: ${{matrix.config.name}} path: "**/My Projects/Torque3D/game/test_detail.xml" - reporter: java-junit + reporter: java-junit diff --git a/.github/workflows/test-results-windows.yml b/.github/workflows/test-results-windows.yml index c931fadc5..0fa435464 100644 --- a/.github/workflows/test-results-windows.yml +++ b/.github/workflows/test-results-windows.yml @@ -23,10 +23,18 @@ jobs: } steps: + - name: Download Windows Test Report + uses: dawidd6/action-download-artifact@v2 + with: + path: Windows + name: ${{matrix.config.artifact-name}} + workflow: ${{ github.event.workflow.id }} + run_id: ${{ github.event.workflow_run.id }} + - name: Test Reporter uses: phoenix-actions/test-reporting@v12 with: artifact: ${{matrix.config.artifact-name}} name: ${{matrix.config.name}} path: "**/My Projects/Torque3D/game/test_detail.xml" - reporter: java-junit + reporter: java-junit