Skip to content

Commit

Permalink
ci: Set timeout
Browse files Browse the repository at this point in the history
fixes #532
  • Loading branch information
kou committed Nov 19, 2024
1 parent 7fa18aa commit 205fe52
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ permissions:
jobs:
CompatHelper:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check if Julia is already available in the PATH
id: julia_in_path
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: JuliaRegistries/TagBot@v1
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
license:
name: Audit licenses
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -35,6 +36,7 @@ jobs:
release:
name: Verify release - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -67,6 +69,7 @@ jobs:
test:
name: ${{ matrix.pkg.name }} - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ matrix.nthreads }} threads - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 45
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -115,6 +118,7 @@ jobs:
test_monorepo:
name: Monorepo dev - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -152,6 +156,7 @@ jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: julia-actions/julia-buildpkg@latest
Expand All @@ -161,6 +166,7 @@ jobs:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
Format:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: julia-actions/setup-julia@v2
- uses: actions/checkout@v4
Expand Down

0 comments on commit 205fe52

Please sign in to comment.