Skip to content

Commit cc0cd07

Browse files
extend the timeout-minutes in build/test from 60 min to 120 min (#3203)
1 parent 52df589 commit cc0cd07

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/linux-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
container:
7474
image: ${{ matrix.container_image }}
7575
options: ${{ matrix.gpu_arch_type == 'cuda' && '--gpus all' || ' ' }}
76-
# If a build is taking longer than 60 minutes on these runners we need
76+
# If a build is taking longer than 120 minutes on these runners we need
7777
# to have a conversation
78-
timeout-minutes: 60
78+
timeout-minutes: 120
7979
steps:
8080
- name: Clean workspace
8181
run: |
@@ -167,7 +167,7 @@ jobs:
167167
fi
168168
169169
upload_docs=0
170-
# Check if there are things in the documentation folder to uplaod
170+
# Check if there are things in the documentation folder to upload
171171
if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 | read -r; then
172172
# TODO: Add a check here to test if on ec2 because if we're not on ec2 then this
173173
# upload will probably not work correctly

.github/workflows/nightlies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
cut_nightly:
1010
runs-on: ubuntu-latest
1111
environment: trigger-nightly
12-
timeout-minutes: 60
12+
timeout-minutes: 120
1313
steps:
1414
- uses: actions/checkout@v3
1515
with:

.github/workflows/windows-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ jobs:
5858
defaults:
5959
run:
6060
shell: bash -l {0}
61-
# If a build is taking longer than 60 minutes on these runners we need
61+
# If a build is taking longer than 120 minutes on these runners we need
6262
# to have a conversation
63-
timeout-minutes: 60
63+
timeout-minutes: 120
6464
steps:
6565
- name: Clean workspace
6666
run: |

0 commit comments

Comments
 (0)