ion/.gitlab-ci.yml

30 lines
846 B
YAML
Raw Normal View History

# 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:
- redis:latest
test:7:
before_script:
- bash build/docker_install.sh > /dev/null
- curl -sS https://getcomposer.org/installer | php
- php composer.phar update
- php composer.phar install
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:
2017-02-22 16:54:13 -05:00
- bash build/docker_install.sh > /dev/null
- curl -sS https://getcomposer.org/installer | php
- php composer.phar update
- php composer.phar install
image: php:7.1-alpine
script:
- phpdbg -qrr -- vendor/bin/phpunit --coverage-text --colors=never