From 97958806513b1640d233da6a8fd3a69fc6a079d6 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 22 Feb 2017 16:54:13 -0500 Subject: [PATCH] Update gitlab ci setup --- .gitlab-ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0f357f1..990f897 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,12 +17,13 @@ test:7: image: php:7 script: - vendor/bin/phpunit --coverage-text --colors=never - -test:hhvm: + +test:7.1: before_script: - - /usr/local/bin/composer self-update - - composer update - - composer install - image: 51systems/docker-gitlab-ci-runner-hhvm + - bash build/docker_install.sh > /dev/null + - curl -sS https://getcomposer.org/installer | php + - php composer.phar update + - php composer.phar install + image: php:7.1 script: - - hhvm -d hhvm.php7.all=true vendor/bin/phpunit --coverage-text --colors=never \ No newline at end of file + - vendor/bin/phpunit --coverage-text --colors=never