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

jensdeppe pushed a commit to branch feature/GEODE-5212
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/GEODE-5212 by this 
push:
     new e4ca62e  GEODE-5212: Add python path for CI archive script
e4ca62e is described below

commit e4ca62e48b99576e1a5ed1394e30d20518877420
Author: Jens Deppe <jde...@pivotal.io>
AuthorDate: Mon Jul 9 10:05:12 2018 -0700

    GEODE-5212: Add python path for CI archive script
    
    - Specifically required for Windows
    
    Signed-off-by: Dick Cavender <dcaven...@pivotal.io>
---
 ci/scripts/test-archive.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/ci/scripts/test-archive.sh b/ci/scripts/test-archive.sh
index fcdd718..4ccfd79 100755
--- a/ci/scripts/test-archive.sh
+++ b/ci/scripts/test-archive.sh
@@ -33,6 +33,11 @@ if [ -e "${GEODE_PULL_REQUEST_ID_FILE}" ]; then
   GEODE_PULL_REQUEST_ID=$(cat ${GEODE_PULL_REQUEST_ID_FILE})
 fi
 
+UNAME_O=$(uname -o)
+# Check for Windows (MINGW64) environment
+if [ ${UNAME_O} = "Msys" ]; then
+  export PATH="${PATH}:/c/Program Files (x86)/Google/Cloud 
SDK/google-cloud-sdk/platform/bundledpython"
+fi
 
 GEODE_BUILD_VERSION_FILE=${BUILDROOT}/geode-build-version/number
 

Reply via email to