Skip to content

Commit

Permalink
GitHub CI: Add 60 min to the timeout for macOS jobs
Browse files Browse the repository at this point in the history
to account for additional install time with "brew update" on macOS 11,
which takes longer because it is deprecated for binary install and has
to install from source.
  • Loading branch information
quark17 committed Apr 6, 2024
1 parent 85a29bf commit a4a73e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test-macos.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
build-macOS:
name: "Build: ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Checkout submodules
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
test-macOS:
name: "Test ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 240
timeout-minutes: 300
needs: build-macos
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
test-toooba-macOS:
name: "Test Toooba ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 60
timeout-minutes: 120
needs: build-macos
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
test-contrib-macOS:
name: "Test bsc-contrib ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
timeout-minutes: 90
needs: build-macos
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
test-bdw-macOS:
name: "Test bdw ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
timeout-minutes: 90
needs: build-macos
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -115,7 +115,7 @@ jobs:
fail-fast: false
name: "Build doc: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
timeout-minutes: 60
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand Down

0 comments on commit a4a73e8

Please sign in to comment.