misc,tests: Create Daily GPU Test timeout

This commit is contained in:
Bobby R. Bruce
2024-10-04 07:36:46 -07:00
parent 866b51a1cc
commit d49d0272ff

View File

@@ -112,7 +112,7 @@ jobs:
gpu-tests:
runs-on: [self-hosted, linux, x64]
container: ghcr.io/gem5/gcn-gpu:latest
timeout-minutes: 300
timeout-minutes: 720 # 12 hours
steps:
- uses: actions/checkout@v4
@@ -127,9 +127,13 @@ jobs:
restore-keys: |
testlib-build-vega
- name: Build VEGA_X86/gem5.opt
working-directory: ${{ github.workspace }}
run: scons build/VEGA_X86/gem5.opt -j $(nproc)
- name: Run Testlib GPU Tests
working-directory: ${{ github.workspace }}/tests
run: ./main.py run --length=long -vvv -t $(nproc) -j $(nproc) --host gcn_gpu gem5/gpu
run: ./main.py run --length=long -vvv --skip-build -t $(nproc) --host gcn_gpu gem5/gpu
- name: Upload results
if: success() || failure()