Skip to content

Commit 18bbde0

Browse files
committed
More hacks to make CI work, hopefully
1 parent 2157e54 commit 18bbde0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/bootstrap/dist.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -915,17 +915,17 @@ impl Step for PlainSourceTarball {
915915
builder.create(&plain_dst_src.join("git-commit-hash"), &sha);
916916
}
917917

918-
// If we're building from git sources, we need to vendor a complete distribution.
919-
if builder.rust_info.is_git() {
920-
// Vendor all Cargo dependencies
921-
let mut cmd = Command::new(&builder.initial_cargo);
922-
cmd.arg("vendor")
923-
.arg("--sync")
924-
.arg(builder.src.join("./src/tools/rust-analyzer/Cargo.toml"))
925-
.arg(builder.src.join("./compiler/rustc_codegen_cranelift/Cargo.toml"))
926-
.current_dir(&plain_dst_src);
927-
builder.run(&mut cmd);
928-
}
918+
// // If we're building from git sources, we need to vendor a complete distribution.
919+
// if builder.rust_info.is_git() {
920+
// // Vendor all Cargo dependencies
921+
// let mut cmd = Command::new(&builder.initial_cargo);
922+
// cmd.arg("vendor")
923+
// .arg("--sync")
924+
// .arg(builder.src.join("./src/tools/rust-analyzer/Cargo.toml"))
925+
// .arg(builder.src.join("./compiler/rustc_codegen_cranelift/Cargo.toml"))
926+
// .current_dir(&plain_dst_src);
927+
// builder.run(&mut cmd);
928+
// }
929929

930930
tarball.bare()
931931
}

0 commit comments

Comments
 (0)