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 2020/03/29 23:17:31 UTC

[geode] branch support/1.10 updated (77bb0c6 -> e8a93bb)

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

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


    from 77bb0c6  Bumping version to 1.10.1
     new bcc123e  Workaround for winrm-cli issue in most recent alpine-docker image. Pin winrm-cli to last working SHA.
     new e8a93bb  fix deploy_meta to work with latest concourse

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ci/images/alpine-tools/Dockerfile | 2 +-
 ci/pipelines/meta/deploy_meta.sh  | 6 +-----
 2 files changed, 2 insertions(+), 6 deletions(-)


[geode] 01/02: Workaround for winrm-cli issue in most recent alpine-docker image. Pin winrm-cli to last working SHA.

Posted by on...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bcc123eec9b0edf5600664f5deda90b37a9f0936
Author: Dick Cavender <dc...@pivotal.io>
AuthorDate: Wed Mar 25 15:18:29 2020 -0700

    Workaround for winrm-cli issue in most recent alpine-docker image.
    Pin winrm-cli to last working SHA.
---
 ci/images/alpine-tools/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/images/alpine-tools/Dockerfile b/ci/images/alpine-tools/Dockerfile
index bc08fc2..81e5f13 100644
--- a/ci/images/alpine-tools/Dockerfile
+++ b/ci/images/alpine-tools/Dockerfile
@@ -37,7 +37,7 @@ RUN apk --no-cache add \
   && gcloud config set component_manager/disable_update_check true \
   && gcloud config set metrics/environment github_docker_image \
   && git clone https://github.com/masterzen/winrm-cli \
-  && (cd winrm-cli; GOPATH=$PWD PATH=$PATH:$PWD/bin make) \
+  && (cd winrm-cli; git reset --hard 6f0c57dee4569c04f64c44c335752b415e5d73a7 ; GOPATH=$PWD PATH=$PATH:$PWD/bin make) \
   && cp winrm-cli/bin/winrm /usr/local/bin/ \
   && rm -rf winrm-cli \
   && gcloud components install -q beta \


[geode] 02/02: fix deploy_meta to work with latest concourse

Posted by on...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e8a93bb55357207e99fcee610f07b06a5763c5a8
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Sun Mar 29 16:17:00 2020 -0700

    fix deploy_meta to work with latest concourse
---
 ci/pipelines/meta/deploy_meta.sh | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/ci/pipelines/meta/deploy_meta.sh b/ci/pipelines/meta/deploy_meta.sh
index 803893e..f6cd9b8 100755
--- a/ci/pipelines/meta/deploy_meta.sh
+++ b/ci/pipelines/meta/deploy_meta.sh
@@ -121,11 +121,7 @@ YML
     --var sanitized-geode-fork=${SANITIZED_GEODE_FORK} \
     --var semver-prerelease-token="${SEMVER_PRERELEASE_TOKEN}" \
     --var upstream-fork=${UPSTREAM_FORK} \
-    --yaml-var public-pipelines=${PUBLIC} 2>&1 |tee flyOutput.log
-
-  if [[ "$(tail -n1 flyOutput.log)" == "bailing out" ]]; then
-    exit 1
-  fi
+    --yaml-var public-pipelines=${PUBLIC}
 popd 2>&1 > /dev/null