Skip to content

Commit f00bdef

Browse files
committed
Allow auto jobs to be non-blocking
1 parent 3b1b0ef commit f00bdef

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

src/ci/citool/src/jobs.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -200,16 +200,6 @@ fn validate_job_database(db: &JobDatabase) -> anyhow::Result<()> {
200200
equivalent_modulo_carve_out(pr_job, auto_job)?;
201201
}
202202

203-
// Auto CI jobs must all "fail-fast" to avoid wasting Auto CI resources. For instance, `tidy`.
204-
for auto_job in &db.auto_jobs {
205-
if auto_job.continue_on_error == Some(true) {
206-
return Err(anyhow!(
207-
"Auto job `{}` cannot have `continue_on_error: true`",
208-
auto_job.name
209-
));
210-
}
211-
}
212-
213203
Ok(())
214204
}
215205

0 commit comments

Comments
 (0)