From e7d1c90aeb5097ea3c70ffc3f25dbede663f98b4 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 23 Jul 2024 10:21:53 -0700 Subject: [PATCH] misc,tests: Second attempt at fixing Daily test (#1373) This fix works by only downloading the gem5 binaries needed for each test, instead of overwhelming the downloader by fetching them all at once. --- .github/workflows/daily-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index 021ce89f8d..dac0f93674 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -94,7 +94,7 @@ jobs: - working-directory: ${{ github.workspace }}/tests id: artifact-targets run: | - echo "targets=$(/main.py list --build-targets -q --length=long gem5/${{ matrix.test-type }} | rev | cut -d / -f 2 | rev | while read x; do echo "${ needs.name-artifacts.outputs.build-name }}-${x}"; done)" >>$GITHUB_OUTPUT + echo "targets=$(./main.py list --build-targets -q --length=long gem5/${{ matrix.test-type }} | rev | cut -d / -f 2 | rev | while read x; do echo ${ needs.name-artifacts.outputs.build-name }}-${x}; done)" >>$GITHUB_OUTPUT # Download the build artifacts for the test. - uses: actions/download-artifact@v4