2017-04-14 19:15:10 +02:00
|
|
|
language: bash
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
env:
|
2017-05-06 09:13:18 +02:00
|
|
|
matrix:
|
2017-05-06 11:37:03 +02:00
|
|
|
- PHP_VERSION=56 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis"
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis"
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE="applications blackfire minio percona nginx caddy apache2 mysql mariadb phpmyadmin postgres postgres-postgis pgadmin neo4j mongo redis"
|
2017-05-06 09:13:18 +02:00
|
|
|
|
|
|
|
- PHP_VERSION=56 BUILD_SERVICE=workspace
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE=workspace
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE=workspace
|
|
|
|
|
|
|
|
- PHP_VERSION=56 BUILD_SERVICE=php-fpm
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE=php-fpm
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE=php-fpm
|
|
|
|
|
2017-05-06 10:02:23 +02:00
|
|
|
- PHP_VERSION=56 BUILD_SERVICE="php-worker hhvm"
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE="php-worker hhvm"
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE="php-worker hhvm"
|
2017-05-06 09:13:18 +02:00
|
|
|
|
|
|
|
- PHP_VERSION=56 BUILD_SERVICE=mssql
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE=mssql
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE=mssql
|
|
|
|
|
|
|
|
- PHP_VERSION=56 BUILD_SERVICE=rethinkdb
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE=rethinkdb
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE=rethinkdb
|
|
|
|
|
|
|
|
- PHP_VERSION=56 BUILD_SERVICE=aerospike
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE=aerospike
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE=aerospike
|
|
|
|
|
2017-10-14 20:01:16 +02:00
|
|
|
- PHP_VERSION=56 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer"
|
|
|
|
- PHP_VERSION=70 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer"
|
|
|
|
- PHP_VERSION=71 BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq adminer elasticsearch certbot mailhog maildev selenium jenkins proxy proxy2 balancer"
|
2017-05-06 09:13:18 +02:00
|
|
|
|
2017-04-21 01:56:59 +02:00
|
|
|
- HUGO_VERSION=0.20.2
|
2017-04-14 19:15:10 +02:00
|
|
|
|
2017-05-04 10:15:28 +02:00
|
|
|
# Installing a newer Docker version
|
|
|
|
before_install:
|
2017-06-29 03:25:24 +02:00
|
|
|
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
|
|
|
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
|
2017-05-04 10:15:28 +02:00
|
|
|
- sudo apt-get update
|
2017-06-29 03:25:24 +02:00
|
|
|
- sudo apt-get -y install docker-ce
|
2017-06-29 03:30:37 +02:00
|
|
|
- docker version
|
2017-05-04 10:15:28 +02:00
|
|
|
|
2017-04-20 19:55:09 +02:00
|
|
|
script: ./travis-build.sh
|
2017-04-14 09:55:08 +02:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: pages
|
|
|
|
skip_cleanup: true
|
2017-04-14 19:56:18 +02:00
|
|
|
local_dir: docs
|
2017-04-14 09:55:08 +02:00
|
|
|
github_token: $GITHUB_TOKEN
|
|
|
|
on:
|
|
|
|
branch: master
|
2017-04-14 19:56:18 +02:00
|
|
|
condition: -n "${HUGO_VERSION}"
|
2017-04-14 09:55:08 +02:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|