aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-02-11 11:12:28 +0000
committerMario <mario@mariovavti.com>2022-02-11 11:12:28 +0000
commit78206b48f4ae4722d08eb77db5bd5a56fc6f127c (patch)
treed592a55f76e0f078d6564d4c6ede09ab9f81da2e
parentdc3cec06ca40fa1de695847a24eb06b1d220203b (diff)
downloadvolse-hubzilla-78206b48f4ae4722d08eb77db5bd5a56fc6f127c.tar.gz
volse-hubzilla-78206b48f4ae4722d08eb77db5bd5a56fc6f127c.tar.bz2
volse-hubzilla-78206b48f4ae4722d08eb77db5bd5a56fc6f127c.zip
add php-gd
-rw-r--r--.gitlab-ci.yml6
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