-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Refactor git change detection in bootstrap #138591
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
082ab9c
Implement a new unified function for figuring out how if a set of pat…
Kobzol 1d1f248
Use `check_path_modifications` for detecting local GCC changes
Kobzol 0396f0e
Use `check_path_modifications` for detecting local LLVM changes
Kobzol 2228033
Use `check_path_modifications` for detecting local rustc changes
Kobzol 1dabb76
Explicitly model missing upstream
Kobzol 1f5320e
Unify usages of path modifications and log them in verbose mode
Kobzol 8515d7e
Cache result of `check_path_modifications`
Kobzol 64795ec
Remove `setup-upstream-remote.sh` and upstream handling.
Kobzol 432c4a8
Remove the `add_dummy_commit.sh` hack
Kobzol f414afb
Move freshness test to bootstrap
Kobzol 6ca2a0d
Extend `ci_rustc_if_unchanged` tests
Kobzol c32c076
Return `PathFreshness::MissingUpstream` from `detect_[gcc|llvm]_fresh…
Kobzol 3a1dd44
Make `git_dir` required in several git functions
Kobzol e9f3e3a
Clarify comment
Kobzol 4005851
Use `--author-date-order` when looking up upstream commits to support…
Kobzol fbca453
Fix compiletest and doc comment
Kobzol File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Seems like
MissingUpstream
should be handled here.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.
We handle it one level above, in
try_download_gcc
. But actually I can remove the uglyexit(1)
hack with just returningMissingUpstream
.