summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-07-21 12:28:55 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-08-02 06:46:22 -0400
commit5d7071293a95c73f1c736b316e1829593eb681e3 (patch)
tree1bc51458b5e52220d0c4ae32357d5b24742e00b6 /scripts
parentbc5d4b3492f584503c6eae6df50beefb1c92d0ed (diff)
downloadlighttpd-git-5d7071293a95c73f1c736b316e1829593eb681e3.tar.gz
[build] add --with-brotli to CI build
(thx stbuehler)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci-build.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh
index 4ff3ed18..b04ec351 100755
--- a/scripts/ci-build.sh
+++ b/scripts/ci-build.sh
@@ -18,7 +18,8 @@ case "${build}" in
--with-pic --enable-extra-warnings \
--with-dbi --with-mysql --with-pgsql \
--with-ldap --with-attr --with-openssl --with-pcre \
- --with-zlib --with-bzip2 --with-fam --with-webdav-props --with-webdav-locks --with-gdbm \
+ --with-zlib --with-brotli --with-bzip2 \
+ --with-webdav-props --with-webdav-locks --with-fam --with-gdbm \
--with-memcached --with-lua --with-libev --with-libunwind \
--with-krb5 --with-geoip
make clean
@@ -32,7 +33,8 @@ case "${build}" in
--with-pic --enable-extra-warnings \
--with-dbi --with-mysql --with-pgsql \
--with-ldap --with-attr --with-openssl --with-pcre \
- --with-zlib --with-bzip2 --with-fam --with-webdav-props --with-webdav-locks --with-gdbm \
+ --with-zlib --with-brotli --with-bzip2 \
+ --with-webdav-props --with-webdav-locks --with-fam --with-gdbm \
--with-memcached --with-lua --with-libev --with-libunwind \
--with-krb5 --with-geoip --with-sasl
make
@@ -44,6 +46,7 @@ case "${build}" in
cmake \
-DBUILD_EXTRA_WARNINGS=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DWITH_BROTLI=ON \
-DWITH_BZIP=ON \
-DWITH_FAM=ON \
-DWITH_GDBM=ON \
@@ -71,9 +74,9 @@ case "${build}" in
export LIBS="-ldl"
;;
esac
- # scons with_zlib=yes with_bzip2=yes with_openssl=yes -k check_fullstatic
- # scons with_zlib=yes with_bzip2=yes with_openssl=yes with_memcached=yes -k check_static check_dynamic
- scons with_zlib=yes with_bzip2=yes with_openssl=yes -k check_fullstatic check_static check_dynamic
+ # 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_zlib=yes with_brotli=yes with_bzip2=yes with_openssl=yes -k check_fullstatic check_static check_dynamic
;;
*)
echo >&2 "Unknown build system: ${build}"