forked from muesli/beehive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (31 loc) · 855 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
language: go
os:
- linux
- osx
go:
- 1.8.x
- 1.9.x
- 1.10.x
- tip
matrix:
allow_failures:
- go: tip
env:
global:
- DEP_VERSION=0.4.1
before_install:
# Download the dep binary to the bin folder in $GOPATH
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir $GOPATH/bin; curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-darwin-amd64 -o $GOPATH/bin/dep; fi
- chmod +x $GOPATH/bin/dep;
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: always
script: make get-deps debug test