2016-08-04 14:55:37 -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:
|
|
|
|
before_script:
|
|
|
|
- bash build/docker_install.sh > /dev/null
|
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
2016-08-29 14:32:28 -04:00
|
|
|
- php composer.phar update
|
|
|
|
- php composer.phar install
|
2016-08-04 14:55:37 -04:00
|
|
|
image: php:7
|
|
|
|
script:
|
2016-08-29 14:32:28 -04:00
|
|
|
- vendor/bin/phpunit --coverage-text --colors=never
|
2017-02-22 16:54:13 -05:00
|
|
|
|
|
|
|
test:7.1:
|
2016-08-04 14:55:37 -04:00
|
|
|
before_script:
|
2017-02-22 16:54:13 -05:00
|
|
|
- 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
|
2016-08-04 14:55:37 -04:00
|
|
|
script:
|
2017-02-22 16:54:13 -05:00
|
|
|
- vendor/bin/phpunit --coverage-text --colors=never
|