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 19:25:38 UTC

[geode] branch develop updated: GEODE-8945: don't create mass test run pipeline for support branches (#6034)

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

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


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

commit b45ee538fcc0c8405212151a12322b8018448fcc
Author: Owen Nichols <34...@users.noreply.github.com>
AuthorDate: Fri Feb 12 11:24:42 2021 -0800

    GEODE-8945: don't create mass test run pipeline for support branches (#6034)
---
 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