From: Darren Tucker Date: Sat, 20 Sep 2025 05:53:04 +0000 (+1000) Subject: Build OpenSSL with -j4 to speed it up. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1659d0ac095608b809fd3173d2c48b7b39d40b02;p=thirdparty%2Fopenssh-portable.git Build OpenSSL with -j4 to speed it up. --- diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index 8ed1d1783..ff1de0bca 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -231,7 +231,7 @@ if [ ! -z "${INSTALL_OPENSSL}" ]; then git checkout ${INSTALL_OPENSSL} && ./config no-threads shared ${SSLCONFOPTS} \ --prefix=/opt/openssl && - make && sudo make install_sw) + make -j4 && sudo make install_sw) fi if [ ! -z "${INSTALL_LIBRESSL}" ]; then