From 546fe4996069a8c1f55e34b546a30cb10dc3a5d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 29 Dec 2015 17:09:04 +0100 Subject: [PATCH] ignore platform reqs on build --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 50a37acc8..51432808b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ services: before_script: - composer config github-oauth.github.com $GITHUB_TOKEN - if [ $CI_BUILD_REF_NAME = "1.0" ] ; then export COMPOSER_ROOT_VERSION="1.0-dev"; else export COMPOSER_ROOT_VERSION="dev-master"; fi - - composer install --no-interaction + - composer install --no-interaction --ignore-platform-reqs - cp Tests/Fixtures/App/app/config/parameters.gitlab-ci.yml Tests/Fixtures/App/app/config/parameters.yml - ./console.sh --env=test cache:warmup - ./console.sh doctrine:migrations:migrate --env=test --no-interaction @@ -12,8 +12,8 @@ before_script: test:php-5.6: stage: test - script: phpunit --testdox + script: phpunit test:php-7: stage: test image: chill/ci-image:php-7 - script: phpunit --testdox + script: phpunit