build-and-run: disable HTTP rewrite module

The HTTP rewrite module needs PCRE, which is not available in the GHA
MacOS runners. It is unused by the tests, so it's safe to disable
building it.
pull/159/head
Adrian Perez de Castro 2023-01-20 13:35:13 +02:00
parent f50d7b799f
commit 4b23949467
No known key found for this signature in database
GPG Key ID: 91C559DBE4C9123B
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ cd nginx-${NGINX}
./configure \
--add-${DYNAMIC:+dynamic-}module=.. \
--with-http_addition_module \
--without-http_rewrite_module \
--prefix="$(pwd)/../prefix"
make -j"$JOBS"
make install