diff options
author | 2017-10-07 14:25:38 +0000 | |
---|---|---|
committer | 2017-10-07 14:25:38 +0000 | |
commit | 4ccf376a405ac49aa0676527637a2090580b7e11 (patch) | |
tree | 3d8fad2a7244cd9d0696951d1f8246a33734c70a | |
parent | 86c54336f9de52fd82379f75b403de5cbcb35a38 (diff) | |
parent | 0e674db7a24614b0825c1ecb6133c9e9cc74d621 (diff) |
Merge "jjb: xci: xci-verify-jobs: Skip complete XCI deployments for 'skip-deloyment'"
-rw-r--r-- | jjb/xci/xci-verify-jobs.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/xci/xci-verify-jobs.yml b/jjb/xci/xci-verify-jobs.yml index 0a7b960a0..945760f17 100644 --- a/jjb/xci/xci-verify-jobs.yml +++ b/jjb/xci/xci-verify-jobs.yml @@ -295,7 +295,7 @@ #!/bin/bash # skip the deployment if the patch doesn't impact the deployment - if [[ "$GERRIT_TOPIC" =~ 'skip-verify' ]]; then + if [[ "$GERRIT_TOPIC" =~ 'skip-verify|skip-deployment' ]]; then echo "Skipping the deployment!" exit 0 fi @@ -310,7 +310,7 @@ #!/bin/bash # skip the healthcheck if the patch doesn't impact the deployment - if [[ "$GERRIT_TOPIC" =~ 'skip-verify' ]]; then + if [[ "$GERRIT_TOPIC" =~ 'skip-verify|skip-deployment' ]]; then echo "Skipping the healthcheck!" exit 0 fi |