Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
MARGS: "-j2"
CFLAGS: "-g"
# This will need updating as the ubuntu-latest image changes:
PHP_FPM: "/usr/sbin/php-fpm8.1"
PHP_FPM: "/usr/sbin/php-fpm8.3"

jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions test/travis_before_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,8 @@ if test -v TEST_MOD_TLS -a -v RUSTLS_VERSION; then
popd
fi
fi

if test -v PHP_FPM -a ! -v SKIP_TESTING; then
# Sanity test the php-fpm executable exists.
$PHP_FPM --version || exit 1
fi
5 changes: 0 additions & 5 deletions test/travis_run_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,6 @@ if test -v TEST_ASAN; then
export ASAN_OPTIONS="log_path=$PWD/asan.log:detect_leaks=0"
fi

if test -v PHP_FPM; then
# Sanity test the executable exists.
$PHP_FPM --version
fi

# Try to keep all potential coredumps from all processes
sudo sysctl -w kernel.core_uses_pid=1 2>/dev/null || true
# Systemd based systems might process core dumps via systemd-coredump.
Expand Down
Loading