2016-07-18 09:58:23 -04:00
|
|
|
# Composer stores all downloaded packages in the vendor/ directory.
|
|
|
|
# Do not use the following if the vendor/ directory is commited to
|
|
|
|
# your git repository.
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- vendor/
|
|
|
|
|
|
|
|
services:
|
|
|
|
- redis:latest
|
|
|
|
|
|
|
|
test:7:
|
2016-08-03 14:30:36 -04:00
|
|
|
before_script:
|
|
|
|
- bash build/docker_install.sh > /dev/null
|
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
|
|
|
- php composer.phar install --no-dev
|
2016-07-18 09:58:23 -04:00
|
|
|
image: php:7
|
|
|
|
script:
|
2016-08-03 14:30:36 -04:00
|
|
|
- phpunit -c build
|
2016-12-20 12:58:37 -05:00
|
|
|
|
|
|
|
test:7.1:
|
|
|
|
before_script:
|
|
|
|
- bash build/docker_install.sh > /dev/null
|
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
|
|
|
- php composer.phar install --no-dev
|
|
|
|
image: php:7.1
|
|
|
|
script:
|
|
|
|
- phpunit -c build
|
2016-08-03 14:30:36 -04:00
|
|
|
|
|
|
|
test:hhvm:
|
|
|
|
before_script:
|
2016-08-03 18:43:09 -04:00
|
|
|
- /usr/local/bin/composer self-update
|
|
|
|
- curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
|
|
|
|
- chmod +x /usr/local/bin/phpunit
|
|
|
|
- composer install --no-dev
|
2016-08-03 18:09:55 -04:00
|
|
|
image: 51systems/docker-gitlab-ci-runner-hhvm
|
2016-08-03 14:30:36 -04:00
|
|
|
script:
|
2016-11-03 11:39:24 -04:00
|
|
|
- hhvm -d hhvm.php7.all=true vendor/bin/phpunit -c build
|