Skip to content

Commit b3693d5

Browse files
authored
ci: Set timeout (#533)
fixes #532
1 parent d6f67cb commit b3693d5

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ permissions:
2626
jobs:
2727
CompatHelper:
2828
runs-on: ubuntu-latest
29+
timeout-minutes: 15
2930
steps:
3031
- name: Check if Julia is already available in the PATH
3132
id: julia_in_path

.github/workflows/TagBot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
TagBot:
2626
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
2727
runs-on: ubuntu-latest
28+
timeout-minutes: 5
2829
steps:
2930
- uses: JuliaRegistries/TagBot@v1
3031
with:

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
license:
2929
name: Audit licenses
3030
runs-on: ubuntu-latest
31+
timeout-minutes: 5
3132
steps:
3233
- uses: actions/checkout@v5
3334
- uses: actions/setup-python@v6
@@ -38,6 +39,7 @@ jobs:
3839
release:
3940
name: Verify release - ${{ matrix.os }}
4041
runs-on: ${{ matrix.os }}
42+
timeout-minutes: 30
4143
strategy:
4244
fail-fast: false
4345
matrix:
@@ -75,6 +77,7 @@ jobs:
7577
test:
7678
name: ${{ matrix.pkg.name }} - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.nthreads }} threads - ${{ github.event_name }}
7779
runs-on: ${{ matrix.os }}
80+
timeout-minutes: 45
7881
strategy:
7982
fail-fast: false
8083
matrix:
@@ -124,6 +127,7 @@ jobs:
124127
test_monorepo:
125128
name: Monorepo dev - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
126129
runs-on: ${{ matrix.os }}
130+
timeout-minutes: 30
127131
strategy:
128132
fail-fast: true
129133
matrix:
@@ -161,6 +165,7 @@ jobs:
161165
docs:
162166
name: Documentation
163167
runs-on: ubuntu-latest
168+
timeout-minutes: 5
164169
steps:
165170
- uses: actions/checkout@v5
166171
- uses: julia-actions/julia-buildpkg@latest
@@ -170,6 +175,7 @@ jobs:
170175
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
171176
Format:
172177
runs-on: ubuntu-latest
178+
timeout-minutes: 5
173179
steps:
174180
- uses: julia-actions/setup-julia@v2
175181
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)