banker/.gitlab-ci.yml

22 lines
648 B
YAML
Raw Normal View History

2017-01-17 11:28:13 -05:00
services:
- memcached:latest
2017-01-17 11:28:13 -05:00
- redis:latest
test:7:
before_script:
2017-03-01 09:12:02 -05:00
- sh build/docker_install.sh > /dev/null
- curl -sS https://getcomposer.org/installer | php
2017-03-01 09:12:02 -05:00
- php composer.phar install --ignore-platform-reqs
2017-03-01 11:02:46 -05:00
image: php:7
2017-01-17 11:28:13 -05:00
script:
2017-03-01 12:04:01 -05:00
- phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never
2017-01-17 11:28:13 -05:00
test:7.1:
before_script:
2017-03-01 09:12:02 -05:00
- sh build/docker_install.sh > /dev/null
- curl -sS https://getcomposer.org/installer | php
2017-03-01 09:12:02 -05:00
- php composer.phar install --ignore-platform-reqs
2017-03-01 11:02:46 -05:00
image: php:7.1
2017-01-17 11:28:13 -05:00
script:
2017-03-01 12:04:01 -05:00
- phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never