2017-02-15 09:30:27 -05:00
|
|
|
test:7.1:
|
|
|
|
stage: test
|
|
|
|
before_script:
|
|
|
|
- sh build/docker_install.sh > /dev/null
|
2017-03-22 11:43:20 -04:00
|
|
|
- apk add --no-cache php7-phpdbg
|
2017-02-15 09:30:27 -05:00
|
|
|
- curl -sS https://getcomposer.org/installer | php
|
2017-02-28 13:52:39 -05:00
|
|
|
- php composer.phar install --ignore-platform-reqs
|
2017-12-06 11:10:50 -05:00
|
|
|
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
|
2017-02-15 09:30:27 -05:00
|
|
|
script:
|
2017-02-28 13:44:41 -05:00
|
|
|
- phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never
|