From: Zachary Ware Date: Tue, 6 Jun 2017 00:11:29 +0000 (-0500) Subject: Install dependencies in Travis OSX build (GH-1952) X-Git-Tag: v3.7.0a1~686 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=167e0fc211c06df;p=thirdparty%2FPython%2Fcpython.git Install dependencies in Travis OSX build (GH-1952) --- diff --git a/.travis.yml b/.travis.yml index a549d4711ba3..778030709acd 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.