Skip to content

Commit f656acc

Browse files
committed
handle dry runs in dist::CodegenBackend
self.number_of_times_dry_runs_have_caused_issues += 1;
1 parent aefd7ac commit f656acc

File tree

1 file changed

+4
-0
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+4
-0
lines changed

src/bootstrap/src/core/build_steps/dist.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,10 @@ impl Step for CodegenBackend {
12981298
}
12991299

13001300
fn run(self, builder: &Builder<'_>) -> Option<GeneratedTarball> {
1301+
if builder.config.dry_run() {
1302+
return None;
1303+
}
1304+
13011305
// This prevents rustc_codegen_cranelift from being built for "dist"
13021306
// or "install" on the stable/beta channels. It is not yet stable and
13031307
// should not be included.

0 commit comments

Comments
 (0)