You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2021/02/12 12:28:02 UTC

[geode] branch support/1.14 updated: GEODE-8945: don't create mass test run pipeline for support branches

This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch support/1.14
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/support/1.14 by this push:
     new 8201783  GEODE-8945: don't create mass test run pipeline for support branches
8201783 is described below

commit 8201783c844f058bf6c022f42d8dff8889d5e321
Author: Owen Nichols <on...@apache.org>
AuthorDate: Thu Feb 11 16:49:51 2021 -0800

    GEODE-8945: don't create mass test run pipeline for support branches
---
 ci/pipelines/meta/deploy_meta.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ci/pipelines/meta/deploy_meta.sh b/ci/pipelines/meta/deploy_meta.sh
index b3cdb84..12a8ae0 100755
--- a/ci/pipelines/meta/deploy_meta.sh
+++ b/ci/pipelines/meta/deploy_meta.sh
@@ -278,15 +278,15 @@ set +x
 
 if [[ "${GEODE_FORK}" != "${UPSTREAM_FORK}" ]]; then
   echo "Disabling unnecessary jobs for forks."
-  pauseJobs ${META_PIPELINE} set-reaper-pipeline
-  pauseJobs ${META_PIPELINE} set-mass-test-run-pipeline
+  pauseJobs ${META_PIPELINE} set-reaper-pipeline set-mass-test-run-pipeline
 elif [[ "$GEODE_FORK" == "${UPSTREAM_FORK}" ]] && [[ "$GEODE_BRANCH" == "develop" ]]; then
   echo "Disabling optional jobs for develop"
+  pauseJobs ${META_PIPELINE} set-mass-test-run-pipeline
   pauseNewJobs ${META_PIPELINE} set-pr-pipeline set-examples-pipeline
 else
   echo "Disabling unnecessary jobs for support branches."
   echo "*** DO NOT RE-ENABLE THESE META-JOBS ***"
-  pauseJobs ${META_PIPELINE} set-images-pipeline set-reaper-pipeline
+  pauseJobs ${META_PIPELINE} set-images-pipeline set-reaper-pipeline set-mass-test-run-pipeline
   pauseNewJobs ${META_PIPELINE} set-pr-pipeline set-examples-pipeline
 fi