Drop macOS from CI matrix - #30
Merged
Merged
Conversation
Stack's resolver pins GHC 9.0.2, which fails to build on GitHub's macOS-latest runners now that they're Apple Silicon (arm64) - the isolated GHC Stack downloads can't find working LLVM tools there. ubuntu-latest already covers the build/test/docs pipeline; dropping macOS avoids a permanently red CI job rather than bumping the resolver, which is a larger, riskier change. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UyGjWEMRv9qKWKmXJfgW7v
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ci.yaml'smacOS-latestjob has been failing: Stack's resolver (lts-19.5) pins GHC 9.0.2, and Stack downloads its own isolated copy of that GHC rather than using the onehaskell-actions/setupinstalls via ghcup. That isolated GHC 9.0.2 can't find working LLVM tools (ld/opt) on GitHub'smacOS-latestrunners, which are now Apple Silicon (arm64), soSetup.hsfails to compile before any project code builds.actions/cache@v2deprecation error aborting the job before it reached the build step.macOS-latestfrom the matrix.ubuntu-latestalready covers build/test/docs generation and deployment.Test plan
cijob runs green onubuntu-latestonlyGenerate docs/Deploy docsstill run on push to masterGenerated by Claude Code