Skip to content

Commit 5d7fca1

Browse files
committed
Allow ignoring the failure of command execution
1 parent b153a01 commit 5d7fca1

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

src/bootstrap/src/core/build_steps/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ impl Step for Clippy {
810810
let _guard = builder.msg_sysroot_tool(Kind::Test, compiler.stage, "clippy", host, host);
811811

812812
// Clippy reports errors if it blessed the outputs
813-
if builder.run_cmd(&mut cargo) {
813+
if builder.run_cmd(BootstrapCommand::from(&mut cargo).allow_failure()) {
814814
// The tests succeeded; nothing to do.
815815
return;
816816
}

src/bootstrap/src/core/build_steps/tool.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use crate::core::build_steps::toolstate::ToolState;
88
use crate::core::builder::{Builder, Cargo as CargoCommand, RunConfig, ShouldRun, Step};
99
use crate::core::config::TargetSelection;
1010
use crate::utils::channel::GitInfo;
11+
use crate::utils::exec::BootstrapCommand;
1112
use crate::utils::helpers::{add_dylib_path, exe, t};
1213
use crate::Compiler;
1314
use crate::Mode;
@@ -109,7 +110,7 @@ impl Step for ToolBuild {
109110

110111
let mut cargo = Command::from(cargo);
111112
// we check this in `is_optional_tool` in a second
112-
let is_expected = builder.run_cmd(&mut cargo);
113+
let is_expected = builder.run_cmd(BootstrapCommand::from(&mut cargo).allow_failure());
113114

114115
builder.save_toolstate(
115116
tool,

src/bootstrap/src/lib.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -581,9 +581,12 @@ impl Build {
581581
// Save any local changes, but avoid running `git stash pop` if there are none (since it will exit with an error).
582582
// diff-index reports the modifications through the exit status
583583
let has_local_modifications = !self.run_cmd(
584-
Command::new("git")
585-
.args(&["diff-index", "--quiet", "HEAD"])
586-
.current_dir(&absolute_path),
584+
BootstrapCommand::from(
585+
Command::new("git")
586+
.args(&["diff-index", "--quiet", "HEAD"])
587+
.current_dir(&absolute_path),
588+
)
589+
.allow_failure(),
587590
);
588591
if has_local_modifications {
589592
self.run(Command::new("git").args(&["stash", "push"]).current_dir(&absolute_path));
@@ -1009,6 +1012,7 @@ impl Build {
10091012
BehaviorOnFailure::Exit => {
10101013
exit!(1);
10111014
}
1015+
BehaviorOnFailure::Ignore => {}
10121016
}
10131017
false
10141018
}

src/bootstrap/src/utils/exec.rs

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ pub enum BehaviorOnFailure {
77
Exit,
88
/// Delay failure until the end of bootstrap invocation.
99
DelayFail,
10+
/// Ignore the failure, the command can fail in an expected way.
11+
Ignore,
1012
}
1113

1214
/// How should the output of the command be handled.
@@ -33,9 +35,15 @@ impl<'a> BootstrapCommand<'a> {
3335
pub fn delay_failure(self) -> Self {
3436
Self { failure_behavior: BehaviorOnFailure::DelayFail, ..self }
3537
}
38+
3639
pub fn fail_fast(self) -> Self {
3740
Self { failure_behavior: BehaviorOnFailure::Exit, ..self }
3841
}
42+
43+
pub fn allow_failure(self) -> Self {
44+
Self { failure_behavior: BehaviorOnFailure::Ignore, ..self }
45+
}
46+
3947
pub fn output_mode(self, output_mode: OutputMode) -> Self {
4048
Self { output_mode, ..self }
4149
}

0 commit comments

Comments
 (0)