Add pdo_sqlsrv
This commit is contained in:
parent
00f7530bb5
commit
1d35c57680
2 changed files with 2 additions and 2 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -29,5 +29,3 @@ jobs:
|
||||||
run: task squashed REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}
|
run: task squashed REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}
|
||||||
- name: Push
|
- name: Push
|
||||||
run: task push REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}
|
run: task push REPO=harbor.rosti.cz/rosti/runtime VERSION=${{ env.TAG_NAME }}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -72,6 +72,7 @@ cd -
|
||||||
echo "no" | /opt/techs/php-$VERSION/bin/pecl install redis
|
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 mongodb
|
||||||
echo "no" | /opt/techs/php-$VERSION/bin/pecl install sqlsrv
|
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
|
export PATH=$PATH:/opt/techs/php-$VERSION/bin
|
||||||
composer.phar require ext-simplexml
|
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=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=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=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
|
# Not supported yet
|
||||||
# https://github.com/Imagick/imagick/issues/358
|
# https://github.com/Imagick/imagick/issues/358
|
||||||
|
|
Loading…
Reference in a new issue