97700f1654
Enhance the GitLab CI configuration by adding tags for codebuild. This includes a unique identifier that incorporates the project ID, pipeline IID, and job name to improve build tracking and organization.
12 lines
256 B
YAML
12 lines
256 B
YAML
default:
|
|
retry:
|
|
max: 2
|
|
when:
|
|
- "unknown_failure"
|
|
- "runner_system_failure"
|
|
- "stuck_or_timeout_failure"
|
|
- "scheduler_failure"
|
|
- "job_execution_timeout"
|
|
tags:
|
|
- codebuild-Gitlab-$CI_PROJECT_ID-$CI_PIPELINE_IID-$CI_JOB_NAME
|