aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-10-10 15:36:16 +0200
committerMario Vavti <mario@mariovavti.com>2018-10-10 15:36:16 +0200
commitae5158b676188082871c66cb70d4cfad75d29d8a (patch)
tree95d67212abf388ad3e787cf52336447f3ec4164e /.gitlab-ci.yml
parentbfd45a001782791bc7a182ddfb3fc30898a2ad78 (diff)
downloadvolse-hubzilla-ae5158b676188082871c66cb70d4cfad75d29d8a.tar.gz
volse-hubzilla-ae5158b676188082871c66cb70d4cfad75d29d8a.tar.bz2
volse-hubzilla-ae5158b676188082871c66cb70d4cfad75d29d8a.zip
sigh...
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b9058011b..2123a43f5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,8 +14,9 @@ before_script:
# Install mysql driver
- docker-php-ext-install pdo_mysql
-# Enable gd
-- docker-php-ext-enable gd
+# Install php-gd
+- docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
+- docker-php-ext-install -j$(nproc) gd
# Install composer
- curl -sS https://getcomposer.org/installer | php