Skip to content

Commit e0d7a59

Browse files
committedJul 28, 2021
boostrap.py: only look for merges by bors
Only look for commits by bors that are merge commits, because those are the only ones with CI artifacts. Also, use `--first-parent` to avoid traversing stuff like rollup branches.
1 parent 5d28520 commit e0d7a59

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎src/bootstrap/bootstrap.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def download_toolchain(self, stage0=True, rustc_channel=None):
464464
# LLVM more often than necessary.
465465
#
466466
# This git command finds that commit SHA, looking for bors-authored
467-
# commits that modified src/llvm-project or other relevant version
467+
# merges that modified src/llvm-project or other relevant version
468468
# stamp files.
469469
#
470470
# This works even in a repository that has not yet initialized
@@ -474,7 +474,7 @@ def download_toolchain(self, stage0=True, rustc_channel=None):
474474
]).decode(sys.getdefaultencoding()).strip()
475475
llvm_sha = subprocess.check_output([
476476
"git", "rev-list", "--author=bors@rust-lang.org", "-n1",
477-
"--first-parent", "HEAD",
477+
"--merges", "--first-parent", "HEAD",
478478
"--",
479479
"{}/src/llvm-project".format(top_level),
480480
"{}/src/bootstrap/download-ci-llvm-stamp".format(top_level),
@@ -666,7 +666,10 @@ def maybe_download_ci_toolchain(self):
666666

667667
# Look for a version to compare to based on the current commit.
668668
# Only commits merged by bors will have CI artifacts.
669-
merge_base = ["git", "rev-list", "--author=bors@rust-lang.org", "-n1", "HEAD"]
669+
merge_base = [
670+
"git", "rev-list", "--author=bors@rust-lang.org", "-n1",
671+
"--merges", "--first-parent", "HEAD"
672+
]
670673
commit = subprocess.check_output(merge_base, universal_newlines=True).strip()
671674

672675
# Warn if there were changes to the compiler or standard library since the ancestor commit.

0 commit comments

Comments
 (0)
Please sign in to comment.