We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Recently, most of my GHC 9.6.1 alpha3 head.hackage jobs fail because an old base-compat (0.10.5) is picked up, ruining the build plan. E.g.:
base-compat
One can fix this by patching the generated workflow with an extra constraints: base-compat >= 0.12.2. E.g.:
constraints: base-compat >= 0.12.2
Is there a way to place extra constraints for the head.hackage job in the cabal.haskell-ci file? Or (how) could this be supported?
cabal.haskell-ci
The text was updated successfully, but these errors were encountered:
I think raw-project is what you are looking for. Adding something like this to your cabal.haskell-ci file should suffice:
raw-project
raw-project constraints: base-compat >= 0.12.2
Sorry, something went wrong.
No branches or pull requests
Recently, most of my GHC 9.6.1 alpha3 head.hackage jobs fail because an old
base-compat
(0.10.5) is picked up, ruining the build plan. E.g.:One can fix this by patching the generated workflow with an extra
constraints: base-compat >= 0.12.2
. E.g.:Is there a way to place extra constraints for the head.hackage job in the
cabal.haskell-ci
file?Or (how) could this be supported?
The text was updated successfully, but these errors were encountered: