From 37f1391a0704d994b185c8356cdff6cd90376c10 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Wed, 6 Dec 2017 11:10:50 -0500 Subject: [PATCH] Try, try, again --- .gitlab-ci.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1f44a8f..670ef8b2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ test:7: - apk add --no-cache php7-phpdbg - curl -sS https://getcomposer.org/installer | php - php composer.phar install --ignore-platform-reqs - image: php:7.0-cli-alpine3.4 + image: php:7.0-alpine script: - phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never @@ -16,6 +16,17 @@ test:7.1: - apk add --no-cache php7-phpdbg - curl -sS https://getcomposer.org/installer | php - php composer.phar install --ignore-platform-reqs - image: php:7.1-cli-alpine3.4 + image: php:7.1-alpine + script: + - phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never + +test:7.2: + 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 --ignore-platform-reqs + image: php:7.2-alpine script: - phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never