32 lines
990 B
YAML
32 lines
990 B
YAML
# 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/
|
|
|
|
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
|
|
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-phpdbg
|
|
- curl -sS https://getcomposer.org/installer | php
|
|
- php composer.phar install --ignore-platform-reqs
|
|
image: php:7.1-alpine
|
|
script:
|
|
- phpdbg -qrr -- ./vendor/bin/phpunit -c build
|