From 65b86cfac98338153936b6b308368f8edf961d3d Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Thu, 30 May 2024 04:27:40 -0700 Subject: [PATCH] misc: Fix daily tests merge-artifacts (#1184) --- .github/workflows/daily-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index 8f2773aca3..465d70ab37 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -64,7 +64,7 @@ jobs: - uses: actions/upload-artifact@v4 with: name: ${{ needs.name-artifacts.outputs.build-name }}${{ matrix.image }} - path: build/${{ matrix.image }}/gem5.opt + path: '*build/${{ matrix.image }}/gem5.opt' retention-days: 5 - run: echo "This job's status is ${{ job.status }}." # The actions/upload-artifact@v4 action has a special "merge" sub action @@ -74,13 +74,13 @@ jobs: # gem5 build artifacts when running the long tests. merge-gem5-build-artifacts: runs-on: ubuntu-latest - needs: build-gem5 + needs: [build-gem5, name-artifacts] steps: - name: Merge gem5 build artifacts uses: actions/upload-artifact/merge@v4 with: name: ${{needs.name-artifacts.outputs.build-name}} - path: ${{needs.name-artifacts.outputs.build-name}}* + pattern: ${{needs.name-artifacts.outputs.build-name}}* retention-days: 5