-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
40 lines (32 loc) · 991 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
30
31
32
33
34
35
36
37
38
39
40
sudo: required
language: node_js
node_js:
- "node"
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.18.0
before_install:
# Install latest version of Docker.
- 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
# Install latest version of Docker Compose.
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/"${DOCKER_COMPOSE_VERSION}"/docker-compose-$(uname -s)-$(uname -m) > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
stages:
- test
- name: deploy
if: branch = master
jobs:
include:
- stage: test
script:
- docker-compose build
- ./scripts/test.sh
- stage: deploy
script:
- ./scripts/deploy.sh "${TRAVIS_COMMIT::12}"