banker/.gitlab-ci.yml

28 lines
956 B
YAML

services:
- memcached:latest
- redis:latest
test:7:
before_script:
- sh build/docker_install.sh > /dev/null
#- apk add --no-cache php7-apcu php7-memcached php7-phpdbg
#- echo '\nextension=apcu.so\nextension=memcached.so' >> /etc/php7/php.ini
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --ignore-platform-reqs
#image: php:7-alpine
image: php:7
script:
- phpdbg -qrr -- ./vendor/bin/phpunit -c build
test:7.1:
before_script:
- sh build/docker_install.sh > /dev/null
#- apk add --no-cache php7.1-apcu php7.1-memcached php7.1-phpdbg
#- echo '\nextension=apcu.so\nextension=memcached.so' >> /etc/php7.1/php.ini
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --ignore-platform-reqs
#image: php:7.1-alpine
image: php:7.1
script:
- phpdbg -qrr -- ./vendor/bin/phpunit -c build