diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-03 00:02:07 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-03 00:02:07 -0500 |
commit | 11d187141383d7630118c65bf8da2406c82d1d6f (patch) | |
tree | b7cb4b1e0e127e44510fe7ed6f674293f1299124 | |
parent | ad3020ef8b7a67d55e68405598a0f94678dffd6d (diff) | |
parent | 0d59751a8a137fcfca897580bbe80f7c663a51b8 (diff) | |
download | cryptography-11d187141383d7630118c65bf8da2406c82d1d6f.tar.gz cryptography-11d187141383d7630118c65bf8da2406c82d1d6f.tar.bz2 cryptography-11d187141383d7630118c65bf8da2406c82d1d6f.zip |
Merge pull request #2628 from reaperhulk/travis-reduce-osx
don't test CC on a dynamic link build on OS X travis
-rwxr-xr-x | .travis/run.sh | 3 |
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 |