-
Notifications
You must be signed in to change notification settings - Fork 441
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
Explicitly disable bzlmod for rust_analyzer tests #3124
Conversation
It already isn't using bzlmod (the runner creates WORKSPACE.bazel), making this explicit allows the tests to be run under bazel 8. (Some work would be required to make test/3rdparty work with bazelmod, I don't understand what.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What failures do you see? I can take a stab at converting this.
Thanks! When trying to run This seems to be because we're generating (Oops, this is in fact with bazel 7.4.1)
|
Should be resolved by #3125. Let me know if that unblocks your testing! |
Thanks, that works for me! In fact one of the tests fails for me (the generated_srcs test), but I think it's showing a real bug, I'll try to fix it. I'm a bit puzzled as to how this is all passing on CI (I'm using the same version as |
I just pushed another change to make sure the |
Closing in favor of #3125 |
I've filed it as #3126, I know how to make the test pass but I don't know how to fix the bug :-(
It looks like it's nondeterministic in principle, but stable in practice on a given machine. |
It already isn't using bzlmod (the runner creates WORKSPACE.bazel),
making this explicit allows the tests to be run under bazel 8.
(Some work would be required to make test/3rdparty work with bazelmod,
I don't understand what.)