summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2018-07-10 22:49:13 +0000
committerBob Ippolito <bob@redivi.com>2018-07-10 22:49:13 +0000
commit7031376a13d8b78ebc6fcf5da9a0b4f6d72fd951 (patch)
tree160431474aaf9100a7cca195803ceb3a40c39483
parent47584e5cef9c94af2f6445081dfbc96777c8a01b (diff)
downloadxattr-7031376a13d8b78ebc6fcf5da9a0b4f6d72fd951.tar.gz
more travis experimentation
-rwxr-xr-x.travis/install.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 929099c..99bb0f7 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -5,13 +5,14 @@ set -x
if [[ -n "$PYENV_VERSION" ]]; then
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- brew update && brew upgrade pyenv
- brew install readline xz
+ brew update
+ brew install expat readline xz openssl
+ brew upgrade pyenv
fi
eval "$(pyenv init -)"
pyenv install --list
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install -s "$PYENV_VERSION"
+ CFLAGS="-I$(xcrun --show-sdk-path)/usr/include $CFLAGS" pyenv install -s "$PYENV_VERSION"
else
pyenv install -s "$PYENV_VERSION"
fi