fix(YAML extension): get built YAML extension for all versions in all services

We need to build yaml extension for `workspace`, `php-fpm` and `laravel-horizon` images.
Turn on YAML for GitHub Actions.
This commit is contained in:
Pavel Savushkin
2021-03-21 18:10:08 +02:00
parent 97bd2c978b
commit 4270f1db71
3 changed files with 16 additions and 15 deletions

View File

@ -840,11 +840,13 @@ ARG INSTALL_YAML=false
RUN if [ ${INSTALL_YAML} = true ]; then \
apt-get install libyaml-dev -y ; \
if [ $(php -r "echo PHP_MAJOR_VERSION;") = "5" ]; then \
pecl install -a yaml-1.3.2; \
else \
pecl install yaml; \
fi && \
docker-php-ext-enable yaml \
echo '' | pecl install -a yaml-1.3.2; \
elif [ $(php -r "echo PHP_MAJOR_VERSION;") = "7" ] && [ $(php -r "echo PHP_MINOR_VERSION;") = "0" ]; then \
echo '' | pecl install yaml-2.0.4; \
else
echo '' | pecl install yaml; \
fi \
&& docker-php-ext-enable yaml; \
;fi
###########################################################################