1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-08 00:34:57 +03:00

travis-ci: add libressl build, make builds parallel, remove not needed brew

This commit is contained in:
Ilya Shipitsin
2018-11-10 12:32:21 +05:00
parent da13915d1e
commit 3e042e093b
3 changed files with 32 additions and 6 deletions

View File

@ -13,7 +13,8 @@ build_openssl () {
tar zxf "download-cache/openssl-${OPENSSL_VERSION}.tar.gz"
cd "openssl-${OPENSSL_VERSION}/"
./config shared --prefix="${OPENSSL_INSTALL_DIR}" --openssldir="${OPENSSL_INSTALL_DIR}" -DPURIFY
make all install_sw
make -j $(nproc || sysctl -n hw.ncpu || echo 4) all
make install_sw
echo "${OPENSSL_VERSION}" > "${OPENSSL_INSTALL_DIR}/.openssl-version"
fi
}