2019-05-30 23:51:06 +00:00
|
|
|
.docker_boostrap: &docker_boostrap |
|
|
|
|
[[ ! -e /.dockerenv ]] && exit 0
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
# Install git (the php image doesn't have it) which is required by composer
|
|
|
|
apt-get update -yq
|
2019-06-02 10:21:42 +00:00
|
|
|
apt-get install git wget -y
|
2019-05-30 23:51:06 +00:00
|
|
|
|
2019-06-02 10:21:42 +00:00
|
|
|
pecl install -o -f redis \
|
|
|
|
&& rm -rf /tmp/pear \
|
|
|
|
&& docker-php-ext-enable redis
|
|
|
|
docker-php-ext-install pcntl
|
2019-05-30 23:51:06 +00:00
|
|
|
|
2019-06-02 10:21:42 +00:00
|
|
|
wget https://getcomposer.org/composer.phar
|
|
|
|
php composer.phar install
|
2019-05-30 23:51:06 +00:00
|
|
|
|
2019-06-02 10:21:42 +00:00
|
|
|
services:
|
|
|
|
- redis:latest
|
2019-05-30 23:51:06 +00:00
|
|
|
|
2018-10-12 23:53:14 +00:00
|
|
|
# Test PHP 7.0
|
|
|
|
test:7.0:
|
|
|
|
image: php:7.0
|
2019-05-30 23:47:42 +00:00
|
|
|
before_script:
|
|
|
|
- *docker_boostrap
|
2018-10-12 23:53:14 +00:00
|
|
|
script:
|
2019-06-02 10:21:42 +00:00
|
|
|
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-6.5.9.phar
|
|
|
|
- chmod +x /usr/local/bin/phpunit
|
2019-05-30 23:47:42 +00:00
|
|
|
- phpunit --configuration phpunit.xml.dist
|
2019-05-30 23:49:08 +00:00
|
|
|
tags:
|
2019-05-30 23:47:42 +00:00
|
|
|
- docker
|
2018-10-12 23:53:14 +00:00
|
|
|
|
2019-06-02 10:21:42 +00:00
|
|
|
# Test PHP 7.1
|
2018-10-12 23:53:14 +00:00
|
|
|
test:7.1:
|
|
|
|
image: php:7.1
|
2019-05-30 23:47:42 +00:00
|
|
|
before_script:
|
|
|
|
- *docker_boostrap
|
2018-10-12 23:53:14 +00:00
|
|
|
script:
|
2019-06-02 10:21:42 +00:00
|
|
|
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-7.5.9.phar
|
|
|
|
- chmod +x /usr/local/bin/phpunit
|
2019-05-30 23:47:42 +00:00
|
|
|
- phpunit --configuration phpunit.xml.dist
|
2019-05-30 23:49:08 +00:00
|
|
|
tags:
|
2019-05-30 23:47:42 +00:00
|
|
|
- docker
|
2018-10-12 23:53:14 +00:00
|
|
|
|
|
|
|
# Test PHP 7.2
|
|
|
|
test:7.2:
|
|
|
|
image: php:7.2
|
2019-05-30 23:47:42 +00:00
|
|
|
before_script:
|
|
|
|
- *docker_boostrap
|
2018-10-12 23:53:14 +00:00
|
|
|
script:
|
2019-06-02 10:21:42 +00:00
|
|
|
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
|
|
|
|
- chmod +x /usr/local/bin/phpunit
|
2019-05-30 23:47:42 +00:00
|
|
|
- phpunit --configuration phpunit.xml.dist
|
2019-05-30 23:49:08 +00:00
|
|
|
tags:
|
2019-06-02 10:21:42 +00:00
|
|
|
- docker
|
|
|
|
|
|
|
|
# Test PHP 7.3
|
|
|
|
test:7.3:
|
|
|
|
image: php:7.3
|
|
|
|
before_script:
|
|
|
|
- *docker_boostrap
|
|
|
|
script:
|
|
|
|
- curl --location --output /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar
|
|
|
|
- chmod +x /usr/local/bin/phpunit
|
|
|
|
- phpunit --configuration phpunit.xml.dist
|
|
|
|
tags:
|
|
|
|
- docker
|