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/
|
|
|
|
|
|
|
|
test:7:
|
|
|
|
before_script:
|
2017-02-28 09:30:04 -05:00
|
|
|
- sh build/docker_install.sh > /dev/null
|
2017-02-28 09:39:43 -05:00
|
|
|
- apk add --no-cache php7-phpdbg
|
2016-08-04 14:55:37 -04:00
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
2017-02-28 09:44:25 -05:00
|
|
|
- php composer.phar update --ignore-platform-reqs
|
2017-02-28 09:42:44 -05:00
|
|
|
- php composer.phar install --ignore-platform-reqs
|
2017-02-28 09:24:42 -05:00
|
|
|
image: php:7-alpine
|
2016-08-04 14:55:37 -04:00
|
|
|
script:
|
2017-02-28 09:24:42 -05:00
|
|
|
- phpdbg -qrr -- 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-28 09:30:04 -05:00
|
|
|
- sh build/docker_install.sh > /dev/null
|
2017-02-28 09:39:43 -05:00
|
|
|
- apk add --no-cache php7.1-phpdbg
|
2017-02-22 16:54:13 -05:00
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
2017-02-28 09:44:25 -05:00
|
|
|
- php composer.phar update --ignore-platform-reqs
|
2017-02-28 09:42:44 -05:00
|
|
|
- php composer.phar install --ignore-platform-reqs
|
2017-02-28 09:24:42 -05:00
|
|
|
image: php:7.1-alpine
|
2016-08-04 14:55:37 -04:00
|
|
|
script:
|
2017-02-28 09:24:42 -05:00
|
|
|
- phpdbg -qrr -- vendor/bin/phpunit --coverage-text --colors=never
|