aboutsummaryrefslogtreecommitdiffstats
path: root/.jenkins
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-05-25 12:29:48 -0700
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-05-25 14:29:48 -0500
commitfca351464449475383d69f1e39309fd90a3a9ffa (patch)
tree207cefd25fb74744aed3b508c6595792455401bf /.jenkins
parent3b28fdf2c7e56c0d3d42bef223abf93049395c34 (diff)
downloadcryptography-fca351464449475383d69f1e39309fd90a3a9ffa.tar.gz
cryptography-fca351464449475383d69f1e39309fd90a3a9ffa.tar.bz2
cryptography-fca351464449475383d69f1e39309fd90a3a9ffa.zip
Switch mac wheel builder to use new syntax (#3597)
Diffstat (limited to '.jenkins')
-rw-r--r--.jenkins/mac-wheel.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.jenkins/mac-wheel.sh b/.jenkins/mac-wheel.sh
index 4056ccc7..7d4a72c0 100644
--- a/.jenkins/mac-wheel.sh
+++ b/.jenkins/mac-wheel.sh
@@ -64,7 +64,7 @@ virtualenv .venv -p $PYTHON
source .venv/bin/activate
# upgrade wheel to latest before we use it to build the wheel
pip install -U wheel
-CRYPTOGRAPHY_OSX_NO_LINK_FLAGS="1" LDFLAGS="/usr/local/opt/openssl@1.1/lib/libcrypto.a /usr/local/opt/openssl@1.1/lib/libssl.a" CFLAGS="-I/usr/local/opt/openssl@1.1/include" pip wheel cryptography --wheel-dir=wheelhouse --no-use-wheel
+CRYPTOGRAPHY_SUPPRESS_LINK_FLAGS="1" LDFLAGS="/usr/local/opt/openssl@1.1/lib/libcrypto.a /usr/local/opt/openssl@1.1/lib/libssl.a" CFLAGS="-I/usr/local/opt/openssl@1.1/include" pip wheel cryptography --wheel-dir=wheelhouse --no-use-wheel
pip install -f wheelhouse cryptography --no-index
python -c "from cryptography.hazmat.backends.openssl.backend import backend;print('Loaded: ' + backend.openssl_version_text());print('Linked Against: ' + backend._ffi.string(backend._lib.OPENSSL_VERSION_TEXT).decode('ascii'))"
otool -L `find .venv -name '_openssl*.so'`