From 8d88a37ec9a8ecd7320ac6742c8090a013ed203c Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Mon, 1 Jul 2024 15:08:19 -0700 Subject: [PATCH] misc: v4.0.0 -> v4 for actions/download-artifact This was fixed to v4.0.0 under the assumption the flaky nature or the daily-tests.yaml workflow was due to a later, minor v4 version causing issue. This did not work. Ergo this patch reverts back to using the latest v4 version. Change-Id: I72b8811022268f34309de193445987dbe0085951 --- .github/workflows/daily-tests.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index 26089aba28..6ebdd5e8bd 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -54,7 +54,7 @@ jobs: run: scons setconfig build/${{ matrix.image }} ${{ matrix.setconfig-option }} - name: Build gem5 run: scons build/${{ matrix.image }}/gem5.opt -j $(nproc) - - uses: actions/upload-artifact@v4.0.0 + - uses: actions/upload-artifact@v4 with: name: ${{ needs.name-artifacts.outputs.build-name }}${{ matrix.image }} path: '*build/${{ matrix.image }}/gem5.opt' @@ -92,7 +92,7 @@ jobs: # download all artifacts for each test. Thoguh this is inelegant, # it's simpler than figuring otu which long tests requires which # binary. - - uses: actions/download-artifact@v4.0.0 + - uses: actions/download-artifact@v4 with: pattern: ${{needs.name-artifacts.outputs.build-name}}* merge-multiple: true @@ -106,7 +106,7 @@ jobs: run: ./main.py run gem5/${{ matrix.test-type }} --length=long --skip-build -vv -t $(nproc) - name: upload results if: success() || failure() - uses: actions/upload-artifact@v4.0.0 + uses: actions/upload-artifact@v4 env: MY_STEP_VAR: ${{ matrix.test-type }}_COMMIT.${{github.sha}}_RUN.${{github.run_id}}_ATTEMPT.${{github.run_attempt}} with: @@ -131,7 +131,7 @@ jobs: - name: Clean runner run: rm -rf ./* || true rm -rf ./.??* || true rm -rf ~/.cache || true - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4.0.0 + - uses: actions/download-artifact@v4 with: name: ${{needs.name-artifacts.outputs.build-name}}ALL - run: chmod u+x build/ALL/gem5.opt @@ -141,7 +141,7 @@ jobs: --skip-build -vv - name: upload results if: success() || failure() - uses: actions/upload-artifact@v4.0.0 + uses: actions/upload-artifact@v4 env: MY_STEP_VAR: ${{ matrix.test-type }}_COMMIT.${{github.sha}}_RUN.${{github.run_id}}_ATTEMPT.${{github.run_attempt}} with: