-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
66 lines (60 loc) · 1.21 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
64
65
66
language: go
os: osx
matrix:
fast_finish: true
allow_failures:
- go: master
include:
- go: master
script:
- make deps
- make build
- make test
- make install
- make version
- make uninstall
- go: 1.12.x
script:
- make deps
- make build
- make test
- make install
- make version
- make uninstall
- go: 1.11.x
script:
- make deps
- make build
- make test
- make install
- make version
- make uninstall
- go: 1.10.x
script:
- make deps EXTRA_FLAGS=
- make build EXTRA_FLAGS=
- make test EXTRA_FLAGS=
- make install EXTRA_FLAGS=
- make version EXTRA_FLAGS=
- make uninstall EXTRA_FLAGS=
- go: 1.9.x
script:
- make deps EXTRA_FLAGS=
- make build EXTRA_FLAGS=
- make install EXTRA_FLAGS=
- make version EXTRA_FLAGS=
- make uninstall EXTRA_FLAGS=
env:
global:
- GO111MODULE=on
- GOPROXY=
install: true
after_success: bash <(curl -s https://codecov.io/bash)
cache:
directories:
- $HOME/.clobber/opt
- !$GOPATH/src/Dids/clobber
- $GOPATH/src
- !$GOPATH/bin/clobber
- $GOPATH/bin
- $GOPATH/pkg