summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2021-12-10 10:02:57 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2021-12-10 10:02:57 -0500
commitcbd6d5b38756c3a7ce04722b81f9ae5143455b1c (patch)
tree2c6b0ea622c3ebe959c143cd4aef74c2f255f4bf /scripts
parentbff5976524c786dc89d1e08b1f588bb3c361afd4 (diff)
downloadlighttpd-git-cbd6d5b38756c3a7ce04722b81f9ae5143455b1c.tar.gz
[build] CI builds now use make -j 2
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci-build.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh
index b1e3ee0c..95901d6e 100755
--- a/scripts/ci-build.sh
+++ b/scripts/ci-build.sh
@@ -46,7 +46,7 @@ case "${build}" in
--with-nettle \
--with-gnutls \
--with-openssl
- make
+ make -j 2
make check
;;
"cmake")
@@ -74,7 +74,7 @@ case "${build}" in
-DWITH_WEBDAV_LOCKS=ON \
-DWITH_WEBDAV_PROPS=ON \
..
- make
+ make -j 2
ctest -V
;;
"scons")
@@ -85,9 +85,9 @@ case "${build}" in
export LIBS="-ldl"
;;
esac
- # scons with_zlib=yes with_brotli=yes with_bzip2=yes with_openssl=yes -k check_fullstatic
- # scons with_zlib=yes with_brotli=yes with_bzip2=yes with_openssl=yes with_memcached=yes -k check_static check_dynamic
- scons with_pcre2=yes with_zlib=yes with_brotli=yes with_bzip2=yes with_openssl=yes -k check_fullstatic check_static check_dynamic
+ # scons -j 2 with_pcre2=yes with_zlib=yes with_brotli=yes with_openssl=yes -k check_fullstatic
+ # scons -j 2 with_pcre2=yes with_zlib=yes with_brotli=yes with_openssl=yes -k check_static check_dynamic
+ scons -j 2 with_pcre2=yes with_zlib=yes with_brotli=yes with_openssl=yes -k check_fullstatic check_static check_dynamic
;;
*)
echo >&2 "Unknown build system: ${build}"