aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2024-01-07 19:46:14 +0100
committerHarald Eilertsen <haraldei@anduin.net>2024-01-07 20:24:52 +0100
commit0a31fc176c01e8ef85a20dfc54ffc18035e0686a (patch)
treebe5008a9b7f94405c952249e473b91a185c99da6 /.gitlab-ci.yml
parent659a8c967cff97e81c3b8defe047437838b7dff4 (diff)
downloadvolse-hubzilla-0a31fc176c01e8ef85a20dfc54ffc18035e0686a.tar.gz
volse-hubzilla-0a31fc176c01e8ef85a20dfc54ffc18035e0686a.tar.bz2
volse-hubzilla-0a31fc176c01e8ef85a20dfc54ffc18035e0686a.zip
Remove behat as dev dependency.
As the Symphony\Yaml stuff disappeared with behat, we need another way to load read the yaml files with database fixtures for the integration tests. As the php yaml extension is not distributed with PHP by default, this creates it as another dev dependency!
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f25c9d7a9..84d28bf2f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,9 +29,9 @@ before_script:
# Install & enable Xdebug for code coverage reports
- pecl install xdebug
- apt-get update
- - apt-get install -yqq libjpeg-dev libpng-dev libpq-dev libzip-dev mariadb-client postgresql-client unzip zip
+ - apt-get install -yqq libjpeg-dev libpng-dev libpq-dev libyaml-dev libzip-dev mariadb-client postgresql-client unzip zip
- docker-php-ext-enable xdebug
- - docker-php-ext-install gd bcmath pdo_mysql pdo_pgsql zip
+ - docker-php-ext-install gd bcmath pdo_mysql pdo_pgsql yaml zip
# Install composer
- curl -sS https://getcomposer.org/installer | php