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

Fix CI #134

Merged
merged 4 commits into from
Dec 5, 2024
Merged
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
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
strategy:
matrix:
ghc:
- "9.10.1"
- "9.8.2"
- "9.6.4"
- "9.4.8"
Expand All @@ -17,10 +18,16 @@ jobs:
- "8.10.7"
- "8.8.4"
cabal:
- "3.10.1.0"
- "3.12.1.0"
os:
- ubuntu-latest
- macOS-latest
include:
- os: macos-latest
ghc: "9.10.1"
cabal: "3.12.1.0"
- os: macos-latest
ghc: "9.8.2"
cabal: "3.12.1.0"
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -96,6 +103,7 @@ jobs:
draft: false
prerelease: false
build_windows:
if: false # This workflow is currently broken due to C library issues. See: https://github.com/haskell/ThreadScope/issues/135
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -109,7 +117,7 @@ jobs:
- "8.10.7"
- "8.8.4"
cabal:
- "3.10.1.0"
- "3.12.1.0"
os:
- windows-latest
fail-fast: false
Expand Down
Loading