-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (48 loc) · 1.11 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
dist: trusty
services:
- docker
language: go
go:
- "1.11"
branches:
except:
- staging.tmp
# Only clone the most recent commit
git:
depth: 1
env:
global:
- DEP_VERSION="0.5.0"
- DOCKER_COMPOSE_VERSION=1.22.0
before_install:
# Download dep binary to $GOPATH/bin
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
# 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
addons:
apt:
packages:
- docker-ce
- jq
install:
- dep ensure
before_script:
- chmod +x ./test/run_test.sh
script:
- ./test/run_test.sh
after_script:
- docker-compose -f ./test/docker-compose.yaml down
before_deploy:
- export GIT_BRANCH=master
deploy:
provider: script
skip_cleanup: true
script: curl -sL https://git.io/fAgkD | bash
on:
all_branches: true
tags: true