Skip to content

Commit

Permalink
qa: disable fpm enablement on PHP 8.1
Browse files Browse the repository at this point in the history
Testing if this is necessary, or in fact causing issues

Signed-off-by: Matthew Weier O'Phinney <[email protected]>
  • Loading branch information
weierophinney committed Sep 9, 2021
1 parent 952b116 commit 3fded87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .laminas-ci/pre-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ apt update -qq
# Hack because apache2 package attempts to write to 000-default.conf twice
apt-get install -o Dpkg::Options::="--force-confnew" -y apache2
if [[ "${PHP_VERSION}" == "8.1" ]];then
switch_sapi -v 8.1 -s fpm:apache
# This might not be necessary
# switch_sapi -v 8.1 -s fpm:apache
echo "Skipping FPM installation on PHP 8.1"
else
apt install -y "php${PHP_VERSION}-fpm"
fi
Expand Down

0 comments on commit 3fded87

Please sign in to comment.