diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-10 15:36:16 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-10-10 15:36:16 +0200 |
commit | ae5158b676188082871c66cb70d4cfad75d29d8a (patch) | |
tree | 95d67212abf388ad3e787cf52336447f3ec4164e /.gitlab-ci.yml | |
parent | bfd45a001782791bc7a182ddfb3fc30898a2ad78 (diff) | |
download | volse-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.yml | 5 |
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 |