Skip to content

Commit

Permalink
Use prefork mpm instead of event mpm for davautocheck on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jun66j5 committed Nov 30, 2024
1 parent 1790131 commit 845705f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ ubuntu-*)
with_lz4=yes
with_utf8proc=yes
parallel=3
apache_mpm=event
;;
macos-*)
pkgs="autoconf automake libtool apr apr-util sqlite lz4 utf8proc openssl
Expand Down Expand Up @@ -96,6 +97,7 @@ macos-*)
with_lz4="$(brew --prefix lz4)"
with_utf8proc="$(brew --prefix utf8proc)"
parallel=4
apache_mpm=prefork
if [ -d "$workspace/serf" ]; then
echo '::group::serf'
python3 -m venv "$workspace/scons"
Expand Down Expand Up @@ -266,7 +268,7 @@ all)
do_make -j"$parallel" all
rc=0
for task in check svnserveautocheck davautocheck; do
do_make "$task" PARALLEL="$parallel" APACHE_MPM=event || rc=$?
do_make "$task" PARALLEL="$parallel" APACHE_MPM="$apache_mpm" || rc=$?
for i in tests.log fails.log; do
test -f "$i" && mv "$i" "$task-$i"
done
Expand Down

0 comments on commit 845705f

Please sign in to comment.