Skip to content

Distribute bootstrap in CI #98483

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 9 commits into from
Sep 24, 2022
Prev Previous commit
Copy bootstrap.exe on Windows, not bootstrap
  • Loading branch information
jyn514 committed Sep 24, 2022
commit 2ef3d172c4c574bd58abca0e8bbe7548c313c60b
2 changes: 1 addition & 1 deletion src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2078,7 +2078,7 @@ impl Step for Bootstrap {

let bootstrap_outdir = &builder.bootstrap_out;
for file in &["bootstrap", "llvm-config-wrapper", "rustc", "rustdoc", "sccache-plus-cl"] {
tarball.add_file(bootstrap_outdir.join(file), "bootstrap/bin", 0o755);
tarball.add_file(bootstrap_outdir.join(exe(file, target)), "bootstrap/bin", 0o755);
}

Some(tarball.generate())
Expand Down