From 5881d87fba408014da0784a830491468b2a9dc09 Mon Sep 17 00:00:00 2001 From: leej3 <“johnleenimh@gmail.com> Date: Wed, 8 May 2024 15:57:16 +0000 Subject: [PATCH] adjust timeouts --- .github/workflows/gpu-tests.yml | 2 +- .github/workflows/pytorch-version-tests.yml | 4 ++-- .github/workflows/tpu-tests.yml | 2 +- .github/workflows/unit-tests.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gpu-tests.yml b/.github/workflows/gpu-tests.yml index 92345b3baed3..fcc4b8221f70 100644 --- a/.github/workflows/gpu-tests.yml +++ b/.github/workflows/gpu-tests.yml @@ -29,7 +29,7 @@ jobs: REPOSITORY: ${{ github.repository }} PR_NUMBER: ${{ github.event.pull_request.number }} runs-on: linux.8xlarge.nvidia.gpu - timeout-minutes: 45 + timeout-minutes: 60 steps: - name: Clean workspace diff --git a/.github/workflows/pytorch-version-tests.yml b/.github/workflows/pytorch-version-tests.yml index 62020d0aba12..b192f0ba169c 100644 --- a/.github/workflows/pytorch-version-tests.yml +++ b/.github/workflows/pytorch-version-tests.yml @@ -10,7 +10,7 @@ on: jobs: build: runs-on: ubuntu-latest - timeout-minutes: 45 + timeout-minutes: 80 strategy: max-parallel: 5 fail-fast: false @@ -95,7 +95,7 @@ jobs: uses: nick-fields/retry@v3 with: max_attempts: 5 - timeout_minutes: 25 + timeout_minutes: 20 shell: bash command: bash tests/run_cpu_tests.sh "not test_time_profilers" new_command_on_retry: USE_LAST_FAILED=1 bash tests/run_cpu_tests.sh "not test_time_profilers" diff --git a/.github/workflows/tpu-tests.yml b/.github/workflows/tpu-tests.yml index a7a52949114c..fd3a1fa8b2d7 100644 --- a/.github/workflows/tpu-tests.yml +++ b/.github/workflows/tpu-tests.yml @@ -92,7 +92,7 @@ jobs: uses: nick-fields/retry@v3 with: max_attempts: 5 - timeout_minutes: 25 + timeout_minutes: 30 shell: bash command: | python -c "import torch_xla; print('torch xla version:', torch_xla.__version__)" diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index fd91bc18d4a7..43b32fd1985c 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -31,7 +31,7 @@ concurrency: jobs: cpu-tests: runs-on: ${{ matrix.os }} - timeout-minutes: 45 + timeout-minutes: 80 defaults: run: shell: bash @@ -123,7 +123,7 @@ jobs: uses: nick-fields/retry@v3 with: max_attempts: 5 - timeout_minutes: 25 + timeout_minutes: 20 shell: bash command: SKIP_DISTRIB_TESTS=${{ matrix.skip-distrib-tests }} bash tests/run_cpu_tests.sh new_command_on_retry: USE_LAST_FAILED=1 SKIP_DISTRIB_TESTS=${{ matrix.skip-distrib-tests }} bash tests/run_cpu_tests.sh