forked from nodedock/nodedock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (23 loc) · 954 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: bash
sudo: required
services:
- docker
env:
matrix:
- NODE_VERSION=8.11.3 BUILD_SERVICE=workspace
- NODE_VERSION=10.7.0 BUILD_SERVICE=workspace
- NODE_VERSION=8.11.3 BUILD_SERVICE=node
- NODE_VERSION=10.7.0 BUILD_SERVICE=node
- NODE_VERSION=NA BUILD_SERVICE="nginx caddy mysql postgres postgres-postgis redis mongo rethinkdb"
- NODE_VERSION=NA BUILD_SERVICE="adminer phpmyadmin pgadmin phpredisadmin"
- NODE_VERSION=NA BUILD_SERVICE="memcached beanstalkd beanstalkd-console rabbitmq elasticsearch mailhog maildev certbot"
# Installing a newer Docker version
before_install:
- 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"
- sudo apt-get update
- sudo apt-get -y install docker-ce
- docker version
script: ./travis-build.sh
notifications:
email: false