-
Notifications
You must be signed in to change notification settings - Fork 81
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
Support Bazel 7 #2180
Support Bazel 7 #2180
Conversation
@Mergifyio rebase |
✅ Branch has been successfully rebased |
4caedff
to
b896b17
Compare
Currently, rules_haskell_tests are failing on MacOS using nixpkgs:
The tests that fail are:
The latter fails with:
This seems to be due to an internal change of the cc_rules. With Bazel 6, a dynamic library was built, but with Bazel 7 a static one is produced. Trying to switch from |
The root cause has been found and will be fixed by bazelbuild/bazel#23438 at some point. Now working on a temporary workaround in rules_nixpkgs. |
It looks like this feature was removed on purpose. I think we should add a |
The support for |
Superseded by #2232 |
After #2117, since Bazel and the project dependencies use separate nixpkgs revisions, this adds support for Bazel 7.
Supersedes #2107