]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Build OpenSSL with -j4 to speed it up.
authorDarren Tucker <dtucker@dtucker.net>
Sat, 20 Sep 2025 05:53:04 +0000 (15:53 +1000)
committerDarren Tucker <dtucker@dtucker.net>
Sat, 20 Sep 2025 06:25:20 +0000 (16:25 +1000)
.github/setup_ci.sh

index 8ed1d178325f9902e819599a425615b83fcddbb6..ff1de0bcae868412e5721dbd2c474f18e798422b 100755 (executable)
@@ -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