ci: do not retry timed out build jobs (#40936)
This commit is contained in:
parent
32f319157d
commit
b8302a8277
@ -46,7 +46,22 @@
|
|||||||
from spack.reporters import CDash, CDashConfiguration
|
from spack.reporters import CDash, CDashConfiguration
|
||||||
from spack.reporters.cdash import build_stamp as cdash_build_stamp
|
from spack.reporters.cdash import build_stamp as cdash_build_stamp
|
||||||
|
|
||||||
JOB_RETRY_CONDITIONS = ["always"]
|
# See https://docs.gitlab.com/ee/ci/yaml/#retry for descriptions of conditions
|
||||||
|
JOB_RETRY_CONDITIONS = [
|
||||||
|
# "always",
|
||||||
|
"unknown_failure",
|
||||||
|
"script_failure",
|
||||||
|
"api_failure",
|
||||||
|
"stuck_or_timeout_failure",
|
||||||
|
"runner_system_failure",
|
||||||
|
"runner_unsupported",
|
||||||
|
"stale_schedule",
|
||||||
|
# "job_execution_timeout",
|
||||||
|
"archived_failure",
|
||||||
|
"unmet_prerequisites",
|
||||||
|
"scheduler_failure",
|
||||||
|
"data_integrity_failure",
|
||||||
|
]
|
||||||
|
|
||||||
TEMP_STORAGE_MIRROR_NAME = "ci_temporary_mirror"
|
TEMP_STORAGE_MIRROR_NAME = "ci_temporary_mirror"
|
||||||
SPACK_RESERVED_TAGS = ["public", "protected", "notary"]
|
SPACK_RESERVED_TAGS = ["public", "protected", "notary"]
|
||||||
|
Loading…
Reference in New Issue
Block a user