We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6034b5b commit fcaacccCopy full SHA for fcaaccc
2 files changed
.github/workflows/linux.yml
@@ -21,8 +21,6 @@ on:
21
env:
22
MARGS: "-j2"
23
CFLAGS: "-g"
24
- # This will need updating as the ubuntu-latest image changes:
25
- PHP_FPM: "/usr/sbin/php-fpm8.1"
26
27
jobs:
28
build:
test/travis_run_linux.sh
@@ -146,6 +146,13 @@ if ! test -v NO_TEST_FRAMEWORK; then
146
RV=1
147
fi
148
149
+ PHP_FPM="`echo /usr/bin/php*-fpm || true`"
150
+ if test -x $PHP_FPM; then
151
+ : Using php-fpm at $PHP_FPM
152
+ else
153
+ unset PHP_FPM
154
+ fi
155
+
156
if test -v WITH_TEST_SUITE -a $RV -eq 0; then
157
make check TESTS="${TESTS}" TEST_CONFIG="${TEST_ARGS}" | tee test.log
158
RV=${PIPESTATUS[0]}
0 commit comments