diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-06 10:09:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 10:09:12 +0200 |
commit | a61a9525e37f6a3a76e8e12b61dac5131700e9d1 (patch) | |
tree | 124fa6492ee1fc13d850604648d034c85cb18be2 | |
parent | 43baf49bb8d8e3dc48bdb8d38fb84a065d4d3ce8 (diff) | |
parent | c2c910736cbf7cd4a43c842124316f0918935063 (diff) | |
download | podman-a61a9525e37f6a3a76e8e12b61dac5131700e9d1.tar.gz podman-a61a9525e37f6a3a76e8e12b61dac5131700e9d1.tar.bz2 podman-a61a9525e37f6a3a76e8e12b61dac5131700e9d1.zip |
Merge pull request #15637 from edsantiago/argh
CI: Cirrus setup: retry failed curls
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 628b74f72..dc0735836 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -61,7 +61,7 @@ env: # Curl-command prefix for downloading task artifacts, simply add the # the url-encoded task name, artifact name, and path as a suffix. ARTCURL: >- - curl --fail --location -O + curl --retry 5 --retry-delay 8 --fail --location -O --url https://api.cirrus-ci.com/v1/artifact/build/${CIRRUS_BUILD_ID} |