We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c18a2bc + 0239eff commit 378d12aCopy full SHA for 378d12a
script/cibuild.sh
@@ -6,6 +6,10 @@ then
6
exit $?;
7
fi
8
9
+if [ "$TRAVIS_OS_NAME" = "osx" ]; then
10
+ export PKG_CONFIG_PATH=$(ls -d /usr/local/Cellar/{curl,zlib}/*/lib/pkgconfig | paste -s -d':' -)
11
+fi
12
+
13
# Should we ask Travis to cache this file?
14
curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar >poxyproxy.jar || exit $?
15
# Run this early so we know it's ready by the time we need it
script/install-deps-osx.sh
@@ -3,4 +3,6 @@
3
set -x
4
5
brew update
+brew install homebrew/dupes/zlib
+brew install curl
brew install libssh2
0 commit comments