ion/.gitlab-ci.yml

20 lines
685 B
YAML
Raw Normal View History

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