aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-07-10 21:57:24 +0530
committerAlex Gaynor <alex.gaynor@gmail.com>2018-07-10 12:27:24 -0400
commitd8aba9f3aa657f1241b7a0de3cb025327723b61d (patch)
treecfd8aeaaef65c8c233144a577ab3f65b323cffeb /.travis
parent43d02e7eabc13ed5f01a1e68aa595fd597d91729 (diff)
downloadcryptography-d8aba9f3aa657f1241b7a0de3cb025327723b61d.tar.gz
cryptography-d8aba9f3aa657f1241b7a0de3cb025327723b61d.tar.bz2
cryptography-d8aba9f3aa657f1241b7a0de3cb025327723b61d.zip
don't install docs when we build openssls...and do it parallel (#4327)
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 673ac4b8..6cb0a6b5 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -22,7 +22,9 @@ if [ -n "${OPENSSL}" ]; then
./config shared no-asm no-ssl2 no-ssl3 -fPIC --prefix="$HOME/$OPENSSL_DIR"
shlib_sed
make depend
- make install
+ # avoid installing the docs
+ # https://github.com/openssl/openssl/issues/6685#issuecomment-403838728
+ make -j"$(nproc)" install_sw install_ssldirs
popd
fi
elif [ -n "${LIBRESSL}" ]; then