We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1b0ef commit f00bdefCopy full SHA for f00bdef
1 file changed
src/ci/citool/src/jobs.rs
@@ -200,16 +200,6 @@ fn validate_job_database(db: &JobDatabase) -> anyhow::Result<()> {
200
equivalent_modulo_carve_out(pr_job, auto_job)?;
201
}
202
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
-
213
Ok(())
214
215
0 commit comments