Skip to content

Commit 99f99ca

Browse files
committed
Make users of download-ci-llvm download a new version
1 parent bc3dbc6 commit 99f99ca

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/bootstrap/bootstrap.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,9 @@ def download_stage0(self):
435435
llvm_sha = subprocess.check_output([
436436
"git", "log", "--author=bors", "--format=%H", "-n1",
437437
"-m", "--first-parent",
438-
"--", "src/llvm-project"
438+
"--",
439+
"src/llvm-project",
440+
"src/bootstrap/download-ci-llvm-stamp",
439441
]).decode(sys.getdefaultencoding()).strip()
440442
llvm_assertions = self.get_toml('assertions', 'llvm') == 'true'
441443
if self.program_out_of_date(self.llvm_stamp(), llvm_sha + str(llvm_assertions)):

src/bootstrap/download-ci-llvm-stamp

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Change this file to make users of the `download-ci-llvm` configuration download
2+
a new version of LLVM from CI, even if the LLVM submodule hasn’t changed.
3+
4+
Last change is for: https://github.com/rust-lang/rust/pull/78131

0 commit comments

Comments
 (0)