mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Add default retries
This commit is contained in:
parent
ffdb308472
commit
5c22c9803a
1 changed files with 10 additions and 1 deletions
|
|
@ -12,6 +12,16 @@ include:
|
|||
- template: Security/License-Scanning.gitlab-ci.yml
|
||||
- template: Security/Dependency-Scanning.gitlab-ci.yml
|
||||
|
||||
default:
|
||||
retry:
|
||||
max: 2 # This is confusing but this means "3 runs at max".
|
||||
when:
|
||||
- unknown_failure
|
||||
- api_failure
|
||||
- runner_system_failure
|
||||
- job_execution_timeout
|
||||
- stuck_or_timeout_failure
|
||||
|
||||
variables:
|
||||
GOVERSION: "1.19.3"
|
||||
GOFUTURE: "latest"
|
||||
|
|
@ -22,7 +32,6 @@ variables:
|
|||
cd "$CI_PROJECT_DIR"
|
||||
find . -type f -exec chmod 0644 {} +
|
||||
find . -type d -exec chmod 0755 {} +
|
||||
# git clean -ffdx # don't do this here, let it happen automatically.
|
||||
fi
|
||||
|
||||
stages:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue