bisect: always override oldCommit to the merge base commit#633
Merged
meteorcloudy merged 1 commit intomasterfrom Nov 22, 2024
Merged
bisect: always override oldCommit to the merge base commit#633meteorcloudy merged 1 commit intomasterfrom
meteorcloudy merged 1 commit intomasterfrom
Conversation
This would resolve branch name like `release-8.0.0rc2` to an actual commit hash, which is then a valid Bazel version for Bazelisk. This avoids error like: ``` # bazel --bisect=release-8.0.0rc2..e18aad1be363fe40bad2cc67462a6389f381096b test //... --- Getting the list of commits between release-8.0.0rc2 and e18aad1be363fe40bad2cc67462a6389f381096b Found 54 commits between (release-8.0.0rc2, e18aad1be363fe40bad2cc67462a6389f381096b] --- Verifying if the given good Bazel commit (release-8.0.0rc2) is actually good 2024/11/18 12:58:03 could not run Bazel: could not download Bazel: could not resolve the version 'release-8.0.0rc2' to an actual version number: Invalid version 'release-8.0.0rc2' ```
Member
Author
|
@fweikert ping~ |
fweikert
approved these changes
Nov 21, 2024
1 task
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.
This would resolve branch name like
release-8.0.0rc2to an actual commit hash, which is then a valid Bazel version for Bazelisk.This avoids error like: