From b7e576e5e884f2938083b5994fb4184e8f52300b Mon Sep 17 00:00:00 2001 From: nmcdonnell-kx Date: Wed, 10 Feb 2021 13:27:37 +0000 Subject: [PATCH] travis: try to brew upgrade apache-arrow only --- .travis.yml | 1 - travis_setup.sh | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 211757a..da33d13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,6 @@ before_install: # Run instructions to install or build Arrow libray - if [[ $BUILD == "True" ]]; then - echo TRAVIS_TAG=$TRAVIS_TAG; chmod +x travis_setup.sh; ./travis_setup.sh; export LIB="cmake/$FILE_ROOT/lib"; diff --git a/travis_setup.sh b/travis_setup.sh index db87fce..3b6dc65 100644 --- a/travis_setup.sh +++ b/travis_setup.sh @@ -16,8 +16,11 @@ APT_LINE elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ -z "$TRAVIS_TAG" ]]; then export HOMEBREW_NO_AUTO_UPDATE=1; + brew install apache-arrow; + brew upgrade apache-arrow; + else + brew install apache-arrow; fi - brew install apache-arrow mkdir -p cbuild/install cp -r /usr/local/opt/apache-arrow/* cbuild/install elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then