From f1e5a0a237d3bf01fa3659ff72ac839382cb0a4c Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 28 Feb 2017 13:52:39 -0500 Subject: [PATCH] Actually install dev dependencies for gitlab ci --- .gitlab-ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6d9803ab..d8fd52e6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,10 @@ -stages: - - test - - test:7: stage: test before_script: - sh build/docker_install.sh > /dev/null - apk add --no-cache php7-phpdbg - curl -sS https://getcomposer.org/installer | php - - php composer.phar install --no-dev --ignore-platform-reqs + - php composer.phar install --ignore-platform-reqs image: php:7-alpine script: - phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never @@ -19,7 +15,7 @@ test:7.1: - sh build/docker_install.sh > /dev/null - apk add --no-cache php7.1-phpdbg - curl -sS https://getcomposer.org/installer | php - - php composer.phar install --no-dev --ignore-platform-reqs + - php composer.phar install --ignore-platform-reqs image: php:7.1-alpine script: - phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never