Merge "jjb: xci: xci-verify-jobs: Skip complete XCI deployments for 'skip-deloyment'"
authorMarkos Chandras <mchandras@suse.de>
Sat, 7 Oct 2017 14:25:38 +0000 (14:25 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Sat, 7 Oct 2017 14:25:38 +0000 (14:25 +0000)
jjb/xci/xci-verify-jobs.yml

index 0a7b960..945760f 100644 (file)
           #!/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
           #!/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