From f8c3eef520b44ccdf5faa98659cb5ca34a0164de Mon Sep 17 00:00:00 2001 From: Andrew Hopkins Date: Wed, 10 Jan 2024 15:08:41 -0800 Subject: [PATCH] Build OpenSSH in parallel, but install it serially --- tests/ci/integration/run_openssh_integration.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ci/integration/run_openssh_integration.sh b/tests/ci/integration/run_openssh_integration.sh index b49511291d..b8f5614211 100755 --- a/tests/ci/integration/run_openssh_integration.sh +++ b/tests/ci/integration/run_openssh_integration.sh @@ -52,7 +52,8 @@ function openssh_build() { # See: https://github.com/openssh/openssh-portable/pull/385 export CFLAGS="-DAWS_LC_INTERNAL_IGNORE_BN_SET_FLAGS=1 -DHAVE_RSA_METH_FREE=1 -DHAVE_RSA_METH_DUP=1 -DHAVE_RSA_METH_SET1_NAME=1 -DHAVE_RSA_METH_SET_PRIV_ENC=1 -DHAVE_RSA_METH_SET_PRIV_DEC=1" ./configure --with-ssl-dir="${AWS_LC_INSTALL_FOLDER}" --prefix="${OPENSSH_INSTALL_FOLDER}" --disable-pkcs11 - make -j "$NUM_CPU_THREADS" install + make -j "$NUM_CPU_THREADS" + make install ls -R "${OPENSSH_INSTALL_FOLDER}" popd }