Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extend the timeout-minutes in build/test from 60 min to 120 min #3203

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/linux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ jobs:
container:
image: ${{ matrix.container_image }}
options: ${{ matrix.gpu_arch_type == 'cuda' && '--gpus all' || ' ' }}
# If a build is taking longer than 60 minutes on these runners we need
# If a build is taking longer than 120 minutes on these runners we need
# to have a conversation
timeout-minutes: 60
timeout-minutes: 120
steps:
- name: Clean workspace
run: |
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
fi

upload_docs=0
# Check if there are things in the documentation folder to uplaod
# Check if there are things in the documentation folder to upload
if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 | read -r; then
# TODO: Add a check here to test if on ec2 because if we're not on ec2 then this
# upload will probably not work correctly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
cut_nightly:
runs-on: ubuntu-latest
environment: trigger-nightly
timeout-minutes: 60
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
defaults:
run:
shell: bash -l {0}
# If a build is taking longer than 60 minutes on these runners we need
# If a build is taking longer than 120 minutes on these runners we need
# to have a conversation
timeout-minutes: 60
timeout-minutes: 120
steps:
- name: Clean workspace
run: |
Expand Down
Loading