diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-07-31 20:10:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-31 20:10:03 +0200 |
commit | a622f8d345b1853401de2e533e9fbf14ef169fa2 (patch) | |
tree | a52e1ba733be904a6fb90633f4f50f9c225058e2 /contrib/cirrus/cache_release_archive.sh | |
parent | 680a3838748b297b7c3c462f98b58f82e39218e8 (diff) | |
parent | 3e3afb942afc7f082d5e1e68f6c50dc677d19e3c (diff) | |
download | podman-a622f8d345b1853401de2e533e9fbf14ef169fa2.tar.gz podman-a622f8d345b1853401de2e533e9fbf14ef169fa2.tar.bz2 podman-a622f8d345b1853401de2e533e9fbf14ef169fa2.zip |
Merge pull request #3682 from cevich/fix_release_rerun
Cirrus: Fix re-run of release task into no-op.
Diffstat (limited to 'contrib/cirrus/cache_release_archive.sh')
-rwxr-xr-x | contrib/cirrus/cache_release_archive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cirrus/cache_release_archive.sh b/contrib/cirrus/cache_release_archive.sh index 639bc9801..2365f7593 100755 --- a/contrib/cirrus/cache_release_archive.sh +++ b/contrib/cirrus/cache_release_archive.sh @@ -93,7 +93,7 @@ elif [[ "$(basename $0)" == "uncache_release_archives.sh" ]] then req_env_var CIRRUS_BUILD_ID CI_NODE_TOTAL GCPJSON GCPNAME GCPROJECT [[ "${CI_NODE_INDEX}" -eq "$[CI_NODE_TOTAL-1]" ]] || \ - die 8 "The release task must be executed last to guarantee archive cache is complete" + die 0 "WARNING: This task depends on cache data from other tasks, otherwise it is a no-op." if [[ -n "$CIRRUS_PR" ]] then |