diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be31445..9f66eb6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,5 +29,3 @@ jobs: run: task squashed REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }} - name: Push run: task push REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }} - - diff --git a/build_php8.sh b/build_php8.sh index 9c4c08b..a8c83fa 100755 --- a/build_php8.sh +++ b/build_php8.sh @@ -72,6 +72,7 @@ cd - echo "no" | /opt/techs/php-$VERSION/bin/pecl install redis echo "no" | /opt/techs/php-$VERSION/bin/pecl install mongodb echo "no" | /opt/techs/php-$VERSION/bin/pecl install sqlsrv +echo "no" | /opt/techs/php-$VERSION/bin/pecl install pdo_sqlsrv export PATH=$PATH:/opt/techs/php-$VERSION/bin composer.phar require ext-simplexml @@ -80,6 +81,7 @@ echo "zend_extension=opcache.so" > /opt/techs/php-$VERSION/etc/conf.d/extensions echo "extension=redis.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini echo "extension=mongodb.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini echo "extension=sqlsrv.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini +echo "extension=pdo_sqlsrv.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini # Not supported yet # https://github.com/Imagick/imagick/issues/358