summaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-07-31 20:10:03 +0200
committerGitHub <noreply@github.com>2019-07-31 20:10:03 +0200
commita622f8d345b1853401de2e533e9fbf14ef169fa2 (patch)
treea52e1ba733be904a6fb90633f4f50f9c225058e2 /.cirrus.yml
parent680a3838748b297b7c3c462f98b58f82e39218e8 (diff)
parent3e3afb942afc7f082d5e1e68f6c50dc677d19e3c (diff)
downloadpodman-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 '.cirrus.yml')
-rw-r--r--.cirrus.yml20
1 files changed, 18 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index faa0a531c..8389c638d 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -504,13 +504,14 @@ success_task:
only_if: $CIRRUS_BRANCH != $DEST_BRANCH
# ignores any dependent task conditions, include everything except 'release'
- depends_on: &alltasks
+ depends_on:
- "gating"
- "vendor"
- "varlink_api"
- "build_each_commit"
- "build_without_cgo"
- "meta"
+ - "image_prune"
- "testing"
- "special_testing_rootless"
- "special_testing_in_podman"
@@ -540,7 +541,22 @@ release_task:
# allow_failures: $CI == "true"
# skip_notifications: $CI == "true"
- depends_on: *alltasks
+ # Must include everything (YAML anchor/alias cannot be used here)
+ depends_on:
+ - "gating"
+ - "vendor"
+ - "varlink_api"
+ - "build_each_commit"
+ - "build_without_cgo"
+ - "meta"
+ - "image_prune"
+ - "testing"
+ - "special_testing_rootless"
+ - "special_testing_in_podman"
+ - "special_testing_cross"
+ - "test_build_cache_images"
+ - "verify_test_built_images"
+ - "success"
gce_instance:
image_name: "${IMAGE_BUILDER_CACHE_IMAGE_NAME}"