aboutsummaryrefslogtreecommitdiffstats
path: root/.jenkins
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-08-03 09:02:20 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-08-03 08:02:20 -0500
commit990d7596ca5d8dfa1d9331cdcb072fabf9d10fca (patch)
tree58fa8e1792d9ad3893b6bacd3cac7fab070cd209 /.jenkins
parent3e15ca5ee264d419249ff95f1b67df64a8e979a0 (diff)
downloadcryptography-990d7596ca5d8dfa1d9331cdcb072fabf9d10fca.tar.gz
cryptography-990d7596ca5d8dfa1d9331cdcb072fabf9d10fca.tar.bz2
cryptography-990d7596ca5d8dfa1d9331cdcb072fabf9d10fca.zip
Remve outdated comment and linewrap (#3838)
Diffstat (limited to '.jenkins')
-rw-r--r--.jenkins/Jenkinsfile-cryptography-wheel-builder6
1 files changed, 4 insertions, 2 deletions
diff --git a/.jenkins/Jenkinsfile-cryptography-wheel-builder b/.jenkins/Jenkinsfile-cryptography-wheel-builder
index c59dba66..9151e3ea 100644
--- a/.jenkins/Jenkinsfile-cryptography-wheel-builder
+++ b/.jenkins/Jenkinsfile-cryptography-wheel-builder
@@ -111,8 +111,10 @@ def build(version, label, imageName) {
virtualenv .venv -p ${pythonPath[version]}
source .venv/bin/activate
pip install -U wheel # upgrade wheel to latest before we use it to build the wheel
- # -mmacosx-version-min=10.9 can be remove when https://github.com/pyca/cryptography/issues/3635 is resolved
- 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 -mmacosx-version-min=10.9" pip wheel cryptography==$BUILD_VERSION --wheel-dir=wheelhouse --no-binary cryptography
+ 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 -mmacosx-version-min=10.9"
+ pip wheel cryptography==$BUILD_VERSION --wheel-dir=wheelhouse --no-binary cryptography
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'`