aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-01-02 22:16:08 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-01-02 22:16:08 -0600
commit0d59751a8a137fcfca897580bbe80f7c663a51b8 (patch)
treeb7cb4b1e0e127e44510fe7ed6f674293f1299124 /.travis
parentad3020ef8b7a67d55e68405598a0f94678dffd6d (diff)
downloadcryptography-0d59751a8a137fcfca897580bbe80f7c663a51b8.tar.gz
cryptography-0d59751a8a137fcfca897580bbe80f7c663a51b8.tar.bz2
cryptography-0d59751a8a137fcfca897580bbe80f7c663a51b8.zip
don't test CC on a dynamic link build on OS X travis
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/run.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis/run.sh b/.travis/run.sh
index 23b9e89e..93dac33f 100755
--- a/.travis/run.sh
+++ b/.travis/run.sh
@@ -15,6 +15,9 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
export LDFLAGS="/usr/local/opt/openssl/lib/libssl.a /usr/local/opt/openssl/lib/libcrypto.a"
else
export LDFLAGS="-L/usr/local/opt/openssl/lib"
+ # on a dynamic build we only need to test against OpenSSL -- CC is not affected by
+ # dynamic vs static
+ export TOX_FLAGS="--backend=openssl"
fi
export CFLAGS="-I/usr/local/opt/openssl/include"
else