File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 MARGS : " -j2"
2323 CFLAGS : " -g"
2424 # This will need updating as the ubuntu-latest image changes:
25- PHP_FPM : " /usr/sbin/php-fpm8.1 "
25+ PHP_FPM : " /usr/sbin/php-fpm8.3 "
2626
2727jobs :
2828 build :
Original file line number Diff line number Diff line change @@ -252,3 +252,8 @@ if test -v TEST_MOD_TLS -a -v RUSTLS_VERSION; then
252252 popd
253253 fi
254254fi
255+
256+ if test -v PHP_FPM -a ! -v SKIP_TESTING; then
257+ # Sanity test the php-fpm executable exists.
258+ $PHP_FPM --version || exit 1
259+ fi
Original file line number Diff line number Diff line change @@ -128,11 +128,6 @@ if test -v TEST_ASAN; then
128128 export ASAN_OPTIONS=" log_path=$PWD /asan.log:detect_leaks=0"
129129fi
130130
131- if test -v PHP_FPM; then
132- # Sanity test the executable exists.
133- $PHP_FPM --version
134- fi
135-
136131# Try to keep all potential coredumps from all processes
137132sudo sysctl -w kernel.core_uses_pid=1 2> /dev/null || true
138133# Systemd based systems might process core dumps via systemd-coredump.
You can’t perform that action at this time.
0 commit comments