Skip to content

Commit

Permalink
adjust timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
leej3 committed May 8, 2024
1 parent 6173fed commit 5881d87
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytorch-version-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 45
timeout-minutes: 80
strategy:
max-parallel: 5
fail-fast: false
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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__)"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:
jobs:
cpu-tests:
runs-on: ${{ matrix.os }}
timeout-minutes: 45
timeout-minutes: 80
defaults:
run:
shell: bash
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5881d87

Please sign in to comment.