57400b0223
Adds a default retry configuration for CI jobs to handle various failure scenarios. This improves the robustness of the pipeline by allowing automatic retries for jobs that fail due to temporary issues.
10 lines
182 B
YAML
10 lines
182 B
YAML
default:
|
|
retry:
|
|
max: 2
|
|
when:
|
|
- "unknown_failure"
|
|
- "runner_system_failure"
|
|
- "stuck_or_timeout_failure"
|
|
- "scheduler_failure"
|
|
- "job_execution_timeout"
|