This is an automated email from the ASF dual-hosted git repository.
jbarrett 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 5f52f3f GEODE-5476: Fixes pr-pipeline deployment name.
5f52f3f is described below
commit 5f52f3f88e90d74c830dceb18a5985a9f48db89b
Author: Robert Houghton <[email protected]>
AuthorDate: Thu Jul 26 15:33:03 2018 -0700
GEODE-5476: Fixes pr-pipeline deployment name.
---
ci/pipelines/pull-request/deploy_pr_pipeline.sh | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/ci/pipelines/pull-request/deploy_pr_pipeline.sh
b/ci/pipelines/pull-request/deploy_pr_pipeline.sh
index 440828e..317decc 100755
--- a/ci/pipelines/pull-request/deploy_pr_pipeline.sh
+++ b/ci/pipelines/pull-request/deploy_pr_pipeline.sh
@@ -86,19 +86,9 @@ TEAM=${CONCOURSE_TEAM}
# TEAM="main"
#fi
-if [[ "${GEODE_FORK}" == "apache" ]]; then
- PIPELINE_PREFIX=""
- DOCKER_IMAGE_PREFIX=""
-else
- PIPELINE_PREFIX="${GEODE_FORK}-${SANITIZED_GEODE_BRANCH}-"
- DOCKER_IMAGE_PREFIX=${PIPELINE_PREFIX}
-fi
-
fly login -t ${TARGET} -n ${TEAM} -c https://concourse.apachegeode-ci.info -u
${CONCOURSE_USERNAME} -p ${CONCOURSE_PASSWORD}
fly -t ${TARGET} set-pipeline \
--non-interactive \
- --pipeline ${PIPELINE_PREFIX}pr \
+ --pipeline pr-${SANITIZED_GEODE_BRANCH} \
--config ${TMP_DIR}/final.yml \
- --var docker-image-prefix=${DOCKER_IMAGE_PREFIX} \
--var concourse-team=${TEAM}
-