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:20:18 UTC

[geode] branch support/1.11 updated: Workaround for winrm-cli issue in most recent alpine-docker image. Pin winrm-cli to last working SHA.

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

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


The following commit(s) were added to refs/heads/support/1.11 by this push:
     new 11965ae  Workaround for winrm-cli issue in most recent alpine-docker image. Pin winrm-cli to last working SHA.
11965ae is described below

commit 11965ae6634bed5985ee0d2c69e24fa3703b7d68
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 \