Skip to content

Commit 1fbacd5

Browse files
committed
ci: add timeout to avoid blocking the job queue
1 parent 9614920 commit 1fbacd5

File tree

8 files changed

+13
-1
lines changed

8 files changed

+13
-1
lines changed

.github/workflows/conda-python-build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
outputs:
5757
MATRIX: ${{ steps.compute-matrix.outputs.MATRIX }}
58+
timeout-minutes: 60
5859
steps:
5960
- name: Compute Build Matrix
6061
id: compute-matrix
@@ -82,6 +83,7 @@ jobs:
8283
image: rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}
8384
env:
8485
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
86+
timeout-minutes: 60
8587
steps:
8688
- uses: actions/checkout@v4
8789
with:

.github/workflows/conda-python-tests.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
BUILD_TYPE: ${{ inputs.build_type }}
5959
outputs:
6060
MATRIX: ${{ steps.compute-matrix.outputs.MATRIX }}
61+
timeout-minutes: 60
6162
steps:
6263
- name: Compute Python Test Matrix
6364
id: compute-matrix
@@ -90,6 +91,7 @@ jobs:
9091
env:
9192
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
9293
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }}
94+
timeout-minutes: 60
9395
steps:
9496
- uses: actions/checkout@v4
9597
with:

.github/workflows/docs-build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
image: rapidsai/ci-conda:cuda13.0.0-ubuntu24.04-py3.13
5353
env:
5454
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
55+
timeout-minutes: 60
5556
steps:
5657
- uses: actions/checkout@v4
5758
with:

.github/workflows/simulator-test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
outputs:
5454
MATRIX: ${{ steps.compute-matrix.outputs.MATRIX }}
55+
timeout-minutes: 60
5556
steps:
5657
- name: Compute Simulator Test Matrix
5758
id: compute-matrix
@@ -79,6 +80,7 @@ jobs:
7980
image: rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}
8081
env:
8182
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
83+
timeout-minutes: 60
8284
steps:
8385
- uses: actions/checkout@v4
8486
with:

.github/workflows/wheel-windows-build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- "3.12"
2727
- "3.13"
2828
runs-on: windows-2022
29+
timeout-minutes: 60
2930
steps:
3031
- uses: actions/checkout@v4
3132
with:

.github/workflows/wheel-windows-tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- "3.12"
2727
- "3.13"
2828
runs-on: "cuda-python-windows-gpu-github"
29+
timeout-minutes: 60
2930
steps:
3031
- uses: actions/checkout@v4
3132
with:

.github/workflows/wheels-build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
outputs:
7878
MATRIX: ${{ steps.compute-matrix.outputs.MATRIX }}
79+
timeout-minutes: 60
7980
steps:
8081
- name: Compute Build Matrix
8182
id: compute-matrix
@@ -102,7 +103,7 @@ jobs:
102103
image: "rapidsai/ci-wheel:cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}"
103104
env:
104105
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
105-
106+
timeout-minutes: 60
106107
steps:
107108
- name: checkout code repo
108109
uses: actions/checkout@v4

.github/workflows/wheels-test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
BUILD_TYPE: ${{ inputs.build_type }}
6868
outputs:
6969
MATRIX: ${{ steps.compute-matrix.outputs.MATRIX }}
70+
timeout-minutes: 60
7071
steps:
7172
- name: Validate test type
7273
run: |
@@ -104,6 +105,7 @@ jobs:
104105
env:
105106
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }} # GPU jobs must set this container env variable
106107
RAPIDS_BUILD_TYPE: ${{ inputs.build_type }}
108+
timeout-minutes: 60
107109
steps:
108110
- name: Run nvidia-smi to make sure GPU is working
109111
run: nvidia-smi

0 commit comments

Comments
 (0)