From e7442036a57afd4f570aedd4021fb9a8c1908ab2 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 20 Aug 2024 14:18:51 -0700 Subject: [PATCH] tests,gpu-compute: Fix Daily/Weekly GPU tests failures (#1485) Without specifying the "gem5/gpu" directory, this test attempted to run the entire test suite. This caused the daily and weekly tests to fail. This change fixes this. --- .github/workflows/daily-tests.yaml | 2 +- .github/workflows/weekly-tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index 45e9e58dd4..fa18f78134 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -94,7 +94,7 @@ jobs: - name: Run Testlib GPU Tests working-directory: ${{ github.workspace }}/tests - run: ./main.py run --length=long --skip-build -vvv -t $(nproc) --host gcn_gpu + run: ./main.py run --length=long --skip-build -vvv -t $(nproc) --host gcn_gpu gem5/gpu - name: Upload results if: success() || failure() diff --git a/.github/workflows/weekly-tests.yaml b/.github/workflows/weekly-tests.yaml index e80761e986..70c6412848 100644 --- a/.github/workflows/weekly-tests.yaml +++ b/.github/workflows/weekly-tests.yaml @@ -74,7 +74,7 @@ jobs: - name: Run Testlib GPU Tests working-directory: ${{ github.workspace }}/tests - run: ./main.py run --length=very-long --skip-build -vvv -t $(nproc) --host gcn_gpu + run: ./main.py run --length=very-long --skip-build -vvv -t $(nproc) --host gcn_gpu gem5/gpu - name: Upload results if: success() || failure()