Skip to content

Commit

Permalink
travis: try to brew upgrade apache-arrow only
Browse files Browse the repository at this point in the history
  • Loading branch information
nmcdonnell-kx committed Feb 10, 2021
1 parent edec535 commit b7e576e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
5 changes: 4 additions & 1 deletion travis_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b7e576e

Please sign in to comment.