From 713754025845c6218c0b3d7f7b7e8d57867f7dc3 Mon Sep 17 00:00:00 2001 From: a-maurice Date: Thu, 14 Nov 2024 15:04:10 -0800 Subject: [PATCH 1/2] Make workflow uploads more unique --- .github/workflows/integration_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 8178b664f..6cb12c6ae 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -270,7 +270,7 @@ jobs: uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: - name: build_and_test_results-${{ matrix.platform }}-${{ matrix.ios_sdk }} + name: build_and_test_results-${{ steps.matrix_info.outputs.info }} path: build-results-${{ steps.matrix_info.outputs.info }}* retention-days: ${{ env.artifactRetentionDays }} - name: Upload Mobile integration tests artifact @@ -448,7 +448,7 @@ jobs: uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: - name: build_and_test_results-Playmode + name: build_and_test_results-${{ matrix.os }}-Playmode path: test-results-${{ steps.matrix_info.outputs.info }}* retention-days: ${{ env.artifactRetentionDays }} - name: Update PR label and comment @@ -605,7 +605,7 @@ jobs: if: ${{ !cancelled() }} uses: actions/upload-artifact@v4 with: - name: build_and_test_results-${{ matrix.platform }}-${{ matrix.test_device }} + name: build_and_test_results-${{ steps.matrix_info.outputs.info }} path: testapps/test-results-${{ steps.matrix_info.outputs.info }}* retention-days: ${{ env.artifactRetentionDays }} - name: Download log artifacts From 8ac344f7cd4cfa9c1e4b5ee6ee34f6670a3d2208 Mon Sep 17 00:00:00 2001 From: a-maurice Date: Thu, 14 Nov 2024 15:22:40 -0800 Subject: [PATCH 2/2] Update integration_tests.yml --- .github/workflows/integration_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 6cb12c6ae..28feacf5c 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -270,7 +270,7 @@ jobs: uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: - name: build_and_test_results-${{ steps.matrix_info.outputs.info }} + name: build_and_test_results-build-${{ steps.matrix_info.outputs.info }} path: build-results-${{ steps.matrix_info.outputs.info }}* retention-days: ${{ env.artifactRetentionDays }} - name: Upload Mobile integration tests artifact @@ -605,7 +605,7 @@ jobs: if: ${{ !cancelled() }} uses: actions/upload-artifact@v4 with: - name: build_and_test_results-${{ steps.matrix_info.outputs.info }} + name: build_and_test_results-test-${{ steps.matrix_info.outputs.info }} path: testapps/test-results-${{ steps.matrix_info.outputs.info }}* retention-days: ${{ env.artifactRetentionDays }} - name: Download log artifacts