diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-06-06 00:11:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-06 00:11:29 (GMT) |
commit | 167e0fc211c06df52aff1a81f513763374cb4f88 (patch) | |
tree | 1306848e7609031cf89c19e232618030327903be /.travis.yml | |
parent | c53b13b270767948fddb58b287149c499f9a03c4 (diff) | |
download | cpython-167e0fc211c06df52aff1a81f513763374cb4f88.zip cpython-167e0fc211c06df52aff1a81f513763374cb4f88.tar.gz cpython-167e0fc211c06df52aff1a81f513763374cb4f88.tar.bz2 |
Install dependencies in Travis OSX build (GH-1952)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index a549d47..7780307 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,10 @@ matrix: compiler: clang # Testing under macOS is optional until testing stability has been demonstrated. env: OPTIONAL=true + before_install: + - brew install openssl xz + - export CPPFLAGS="-I$(brew --prefix openssl)/include" + - export LDFLAGS="-L$(brew --prefix openssl)/lib" - os: linux language: python # Build the docs against a stable version of Python so code bugs don't hold up doc-related PRs. |