diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-08-03 20:16:52 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-08-03 21:16:52 -0400 |
commit | dc35eaeae3526f7e47a6c4a3000663f30d64b8d0 (patch) | |
tree | 1f506f1694d819d9741e3564f916f74d48f65033 | |
parent | ad294c6b2a2ff03abb387a8bb17831766ae62d1e (diff) | |
download | cryptography-dc35eaeae3526f7e47a6c4a3000663f30d64b8d0.tar.gz cryptography-dc35eaeae3526f7e47a6c4a3000663f30d64b8d0.tar.bz2 cryptography-dc35eaeae3526f7e47a6c4a3000663f30d64b8d0.zip |
(mostly) revert wheel builder config change (#3846)
* Revert "Remve outdated comment and linewrap (#3838)"
This reverts commit 990d7596ca5d8dfa1d9331cdcb072fabf9d10fca.
* remove the outdated comment
-rw-r--r-- | .jenkins/Jenkinsfile-cryptography-wheel-builder | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.jenkins/Jenkinsfile-cryptography-wheel-builder b/.jenkins/Jenkinsfile-cryptography-wheel-builder index 9151e3ea..11ba2781 100644 --- a/.jenkins/Jenkinsfile-cryptography-wheel-builder +++ b/.jenkins/Jenkinsfile-cryptography-wheel-builder @@ -111,10 +111,7 @@ 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 - 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'` |