-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Adjust --top_level_targets_for_symlinks #18854
Conversation
// https://github.com/bazelbuild/bazel/issues/17081. | ||
targetConfigs = ImmutableSet.of(configuration); | ||
} else { | ||
// Mixed configs, none of which include the top-level config. Delete the symlinks because |
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.
Should we include this case?
Pro: the symlink has nothing useful
Con: this will trigger when $ bazel build //...
doesn't include any tests, since --trim_test_configuration
will remove test options from all targets. Users may be confused why there are no symlinks.
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.
Could you elaborate on the Con? Does --trim_test_configuration
result in duplicate configs? If so, could we somehow recognize when a config differs from the top-level config only in test options and ignore those configs here to fix the Con?
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.
It's just a con in that it means bazel-bin
will still be deleted more than users expect. If $ bazel build //:all
expands to 10 binaries, where only 1 has a self-transition, bazel-bin
will still be deleted. If $ bazel build //:all
also includes a test, bazel-bin
will show up.
Worse, the non-transitioning binaries would actually appear in bazel-bin
if it wasn't deleted. Even though they lack TestOptions
they still have the same bazel-out/foo-bar/bin
path because that instance of config trimming doesn't affect paths.
I'd rather not get into explicitly examining the configuration diffs. Another approach is to not compare the configs but their output paths.
Latest commit implements that, and manual testing shows intuitive results (I tried every combo of test, non-transitioning non-test, transitioning non-test).
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.
I like that change, comparing paths instead of configs makes sense as those are all we care about in the end.
Re: testing: This is an opportunity to open-source another Google test.
Options:
|
A small patch fixes the CI: https://buildkite.com/bazel/google-bazel-presubmit/builds/69167. I'll push https://bazel-review.googlesource.com/c/bazel/+/224150 into Google code review to get the test open-sourced however we decide the above. |
@@ -169,7 +169,9 @@ static ImmutableList<ConvenienceSymlink> createOutputDirectoryLinks( | |||
eventHandler.handle( | |||
Event.warn( | |||
String.format( | |||
"cleared convenience symlink(s) %s because their destinations would be ambiguous", | |||
"cleared convenience symlink(s) %s because they wouldn't contain " |
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.
I like that this is more detailed now, but I could see this message being intimidating for the end user who is usually not the author of the self transition. I have a hard time coming up with something simpler though that would still be precise.
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.
I agree. I hope this is at least a signal to ask for expert help with a clearly diagnosable message. But yes end-user friendly messages would always be great.
This is probably getting off-topic but I like the error pattern idea of a super-concise non-intimidating message with a link to a help page with more context. That page can contextualize as much as needed and distinguish user vs. expert content and not be so overwhelming at the CLI.
@bazel-io flag |
We can probably afford to wait for the tests to become open-source and cherry-pick this into 6.3.0 next week, after the first rc. |
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.
LGTM
Latest CI for https://bazel-review.googlesource.com/c/bazel/+/224150 is totally green: https://buildkite.com/bazel/google-bazel-presubmit/builds/69185. |
In support of #18854. PiperOrigin-RevId: 546346128 Change-Id: Ie3f6976b74cba351573a7f35b0d09391da10fb55
Old semantics: New semantics: Fixes bazelbuild#17081. PiperOrigin-RevId: 546025529 Change-Id: I095564bb9233eba4b008df7f9e6aedae3e973b23
Rebased to open-sourced |
@bazel-io fork 6.3.0 |
@gregestren @aranguyen @fmeum We're trying to cherry-pick this change for release-6.3.0. However, looks like the file, "src/test/java/com/google/devtools/build/lib/buildtool/ConvenienceSymlinkTest.java" is missing in the release branch currently, which is causing the conflicts. Can you please take a look and let us know which commit is missing? cc: @bazelbuild/triage |
You'll need 8781e5c. Can you merge that? |
In support of bazelbuild#18854. PiperOrigin-RevId: 546346128 Change-Id: Ie3f6976b74cba351573a7f35b0d09391da10fb55
Adjust `--top_level_targets_for_symlinks`. - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs, `bazel-bin`, etc. are deleted - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs and at least one of them is the top-level config, `bazel-bin`, etc. point to the top-level config - If targets in `$ bazel build //...` have mixed configs and none are the top-level config, `bazel-bin`, etc. are deleted Fixes bazelbuild#17081. Closes bazelbuild#18854. PiperOrigin-RevId: 546938509 Change-Id: I75adf0b8c2094522125c5e65d8c450eb2436d392
In support of bazelbuild#18854. PiperOrigin-RevId: 546346128 Change-Id: Ie3f6976b74cba351573a7f35b0d09391da10fb55
Adjust `--top_level_targets_for_symlinks`. - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs, `bazel-bin`, etc. are deleted - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs and at least one of them is the top-level config, `bazel-bin`, etc. point to the top-level config - If targets in `$ bazel build //...` have mixed configs and none are the top-level config, `bazel-bin`, etc. are deleted Fixes bazelbuild#17081. Closes bazelbuild#18854. PiperOrigin-RevId: 546938509 Change-Id: I75adf0b8c2094522125c5e65d8c450eb2436d392
In support of bazelbuild#18854. PiperOrigin-RevId: 546346128 Change-Id: Ie3f6976b74cba351573a7f35b0d09391da10fb55
In support of #18854. PiperOrigin-RevId: 546346128 Change-Id: Ie3f6976b74cba351573a7f35b0d09391da10fb55 Co-authored-by: Googler <gregce@google.com>
Adjust `--top_level_targets_for_symlinks`. - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs, `bazel-bin`, etc. are deleted - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs and at least one of them is the top-level config, `bazel-bin`, etc. point to the top-level config - If targets in `$ bazel build //...` have mixed configs and none are the top-level config, `bazel-bin`, etc. are deleted Fixes bazelbuild#17081. Closes bazelbuild#18854. PiperOrigin-RevId: 546938509 Change-Id: I75adf0b8c2094522125c5e65d8c450eb2436d392
Done, thanks. Now it is cherry-pickable. @gregestren |
Adjust `--top_level_targets_for_symlinks`. - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs, `bazel-bin`, etc. are deleted - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs and at least one of them is the top-level config, `bazel-bin`, etc. point to the top-level config - If targets in `$ bazel build //...` have mixed configs and none are the top-level config, `bazel-bin`, etc. are deleted Fixes bazelbuild#17081. Closes bazelbuild#18854. PiperOrigin-RevId: 546938509 Change-Id: I75adf0b8c2094522125c5e65d8c450eb2436d392
* Adjust --top_level_targets_for_symlinks Adjust `--top_level_targets_for_symlinks`. - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs, `bazel-bin`, etc. are deleted - If all targets in `$ bazel build //...` have the top-level config, `bazel-bin`, etc. point to that config - If all targets in `$ bazel build //...` have the same transitioned config, `bazel-bin`, etc. point to that config - If targets in `$ bazel build //...` have mixed configs and at least one of them is the top-level config, `bazel-bin`, etc. point to the top-level config - If targets in `$ bazel build //...` have mixed configs and none are the top-level config, `bazel-bin`, etc. are deleted Fixes #17081. Closes #18854. PiperOrigin-RevId: 546938509 Change-Id: I75adf0b8c2094522125c5e65d8c450eb2436d392 * Merge with 6.3.0 baseline. Particularly manually merge relevant signature changes from 1cd3588. Thsi is different than 1cd3588 itself because that also uses a baseline too new for 6.3.0.
Adjust
--top_level_targets_for_symlinks
.Old semantics:
$ bazel build //...
have the top-level config,bazel-bin
, etc. point to that config$ bazel build //...
have the same transitioned config,bazel-bin
, etc. point to that config$ bazel build //...
have mixed configs,bazel-bin
, etc. are deletedNew semantics:
$ bazel build //...
have the top-level config,bazel-bin
, etc. point to that config$ bazel build //...
have the same transitioned config,bazel-bin
, etc. point to that config$ bazel build //...
have mixed configs and at least one of them is the top-level config,bazel-bin
, etc. point to the top-level config$ bazel build //...
have mixed configs and none are the top-level config,bazel-bin
, etc. are deletedFixes #17081.