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

GitHub CI: Disable Toooba test for macos-13 #674

Merged
merged 2 commits into from
Feb 19, 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: 6 additions & 0 deletions .github/workflows/build-and-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
build-macOS:
name: "Build: ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Checkout submodules
Expand Down Expand Up @@ -120,6 +121,7 @@ jobs:
test-macOS:
name: "Test ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 240
needs: build-macos
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -187,6 +189,8 @@ jobs:
test-toooba-macOS:
name: "Test Toooba ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 60
if: ${{ inputs.os != 'macos-13' }}
needs: build-macos
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -264,6 +268,7 @@ jobs:
test-contrib-macOS:
name: "Test bsc-contrib ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
needs: build-macos
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -340,6 +345,7 @@ jobs:
test-bdw-macOS:
name: "Test bdw ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
needs: build-macos
steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-and-test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
build-ubuntu:
name: "Build: ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- name: Checkout submodules
Expand Down Expand Up @@ -104,6 +105,7 @@ jobs:
test-ubuntu:
name: "Test ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 120
needs: build-ubuntu
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -170,6 +172,7 @@ jobs:
test-toooba-ubuntu:
name: "Test Toooba ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
needs: build-ubuntu
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -253,6 +256,7 @@ jobs:
test-contrib-ubuntu:
name: "Test bsc-contrib ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
needs: build-ubuntu
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -334,6 +338,7 @@ jobs:
test-bdw-ubuntu:
name: "Test bdw ${{ inputs.os }} ghc-${{ inputs.ghc_version }}"
runs-on: ${{ inputs.os }}
timeout-minutes: 30
needs: build-ubuntu
steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
build-check-src:
name: "Check: code cleanliness"
runs-on: ubuntu-20.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Check tabs and whitespace
Expand All @@ -16,6 +17,7 @@ jobs:
build-check-testsuite:
name: "Check: testsuite lint"
runs-on: ubuntu-20.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Check CONFDIR
Expand Down Expand Up @@ -75,6 +77,7 @@ jobs:
fail-fast: false
name: "Build doc: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Install dependencies
Expand Down Expand Up @@ -112,6 +115,7 @@ jobs:
fail-fast: false
name: "Build doc: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- name: Install dependencies
Expand Down Expand Up @@ -155,6 +159,7 @@ jobs:
fail-fast: false
name: "Build releasenotes: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Install dependencies
Expand Down