Skip to content

Commit 1115b01

Browse files
authored
Unrolled build for rust-lang#121976
Rollup merge of rust-lang#121976 - lu-zero:bootstrap-cache, r=onur-ozkan Add an option to have an external download/bootstrap cache Follow up from rust-lang#116697 to address rust-lang#116697 (review)
2 parents d03b986 + 0a80f9a commit 1115b01

File tree

6 files changed

+23
-3
lines changed

6 files changed

+23
-3
lines changed

config.example.toml

+4
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,10 @@
300300
# This is only useful for verifying that rustc generates reproducible builds.
301301
#full-bootstrap = false
302302

303+
# Set the bootstrap/download cache path. It is useful when building rust
304+
# repeatedly in a CI invironment.
305+
# bootstrap-cache-path = /shared/cache
306+
303307
# Enable a build of the extended Rust tool set which is not only the compiler
304308
# but also tools such as Cargo. This will also produce "combined installers"
305309
# which are used to install Rust and Cargo together.

src/bootstrap/bootstrap.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,9 @@ def download_toolchain(self):
557557
shutil.rmtree(bin_root)
558558

559559
key = self.stage0_compiler.date
560-
cache_dst = os.path.join(self.build_dir, "cache")
560+
cache_dst = (self.get_toml('bootstrap-cache-path', 'build') or
561+
os.path.join(self.build_dir, "cache"))
562+
561563
rustc_cache = os.path.join(cache_dst, key)
562564
if not os.path.exists(rustc_cache):
563565
os.makedirs(rustc_cache)

src/bootstrap/configure.py

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ def v(*args):
149149
# (others are conditionally saved).
150150
o("manage-submodules", "build.submodules", "let the build manage the git submodules")
151151
o("full-bootstrap", "build.full-bootstrap", "build three compilers instead of two (not recommended except for testing reproducible builds)")
152+
o("bootstrap-cache-path", "build.bootstrap-cache-path", "use provided path for the bootstrap cache")
152153
o("extended", "build.extended", "build an extended rust tool set")
153154

154155
v("tools", None, "List of extended tools will be installed")

src/bootstrap/src/core/config/config.rs

+4
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ pub struct Config {
161161
pub vendor: bool,
162162
pub target_config: HashMap<TargetSelection, Target>,
163163
pub full_bootstrap: bool,
164+
pub bootstrap_cache_path: Option<PathBuf>,
164165
pub extended: bool,
165166
pub tools: Option<HashSet<String>>,
166167
pub sanitizers: bool,
@@ -827,6 +828,7 @@ define_config! {
827828
locked_deps: Option<bool> = "locked-deps",
828829
vendor: Option<bool> = "vendor",
829830
full_bootstrap: Option<bool> = "full-bootstrap",
831+
bootstrap_cache_path: Option<PathBuf> = "bootstrap-cache-path",
830832
extended: Option<bool> = "extended",
831833
tools: Option<HashSet<String>> = "tools",
832834
verbose: Option<usize> = "verbose",
@@ -1389,6 +1391,7 @@ impl Config {
13891391
locked_deps,
13901392
vendor,
13911393
full_bootstrap,
1394+
bootstrap_cache_path,
13921395
extended,
13931396
tools,
13941397
verbose,
@@ -1477,6 +1480,7 @@ impl Config {
14771480
config.reuse = reuse.map(PathBuf::from);
14781481
config.submodules = submodules;
14791482
config.android_ndk = android_ndk;
1483+
config.bootstrap_cache_path = bootstrap_cache_path;
14801484
set(&mut config.low_priority, low_priority);
14811485
set(&mut config.compiler_docs, compiler_docs);
14821486
set(&mut config.library_docs_private_items, library_docs_private_items);

src/bootstrap/src/core/download.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,9 @@ impl Config {
578578
return;
579579
}
580580

581-
let cache_dst = self.out.join("cache");
581+
let cache_dst =
582+
self.bootstrap_cache_path.as_ref().cloned().unwrap_or_else(|| self.out.join("cache"));
583+
582584
let cache_dir = cache_dst.join(key);
583585
if !cache_dir.exists() {
584586
t!(fs::create_dir_all(&cache_dir));
@@ -705,7 +707,9 @@ download-rustc = false
705707
let llvm_assertions = self.llvm_assertions;
706708

707709
let cache_prefix = format!("llvm-{llvm_sha}-{llvm_assertions}");
708-
let cache_dst = self.out.join("cache");
710+
let cache_dst =
711+
self.bootstrap_cache_path.as_ref().cloned().unwrap_or_else(|| self.out.join("cache"));
712+
709713
let rustc_cache = cache_dst.join(cache_prefix);
710714
if !rustc_cache.exists() {
711715
t!(fs::create_dir_all(&rustc_cache));

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
136136
severity: ChangeSeverity::Info,
137137
summary: "`x install` now skips providing tarball sources (under 'build/dist' path) to speed up the installation process.",
138138
},
139+
ChangeInfo {
140+
change_id: 121976,
141+
severity: ChangeSeverity::Info,
142+
summary: "A new `boostrap-cache-path` option has been introduced which can be utilized to modify the cache path for bootstrap.",
143+
},
139144
];

0 commit comments

Comments
 (0)