diff options
author | Mario <mario@mariovavti.com> | 2022-02-11 11:12:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-02-11 11:12:28 +0000 |
commit | 78206b48f4ae4722d08eb77db5bd5a56fc6f127c (patch) | |
tree | d592a55f76e0f078d6564d4c6ede09ab9f81da2e /.gitlab-ci.yml | |
parent | dc3cec06ca40fa1de695847a24eb06b1d220203b (diff) | |
download | volse-hubzilla-78206b48f4ae4722d08eb77db5bd5a56fc6f127c.tar.gz volse-hubzilla-78206b48f4ae4722d08eb77db5bd5a56fc6f127c.tar.bz2 volse-hubzilla-78206b48f4ae4722d08eb77db5bd5a56fc6f127c.zip |
add php-gd
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 15ebd155c..218a0c403 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,9 +37,11 @@ before_script: - if [ -f /usr/local/etc/php/conf.d/z_prod.ini ]; then mv /usr/local/etc/php/conf.d/z_prod.ini /usr/local/etc/php/conf.d/z_prod.ini.off; fi # Install & enable Xdebug for code coverage reports - pecl install xdebug -- docker-php-ext-enable xdebug - apt-get update -- apt-get install zip unzip +- apt-get install zip unzip php-gd +- docker-php-ext-enable xdebug +- docker-php-ext-enable gd + # Install composer - curl -sS https://getcomposer.org/installer | php |