forked from temporalio/ringpop-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (31 loc) · 792 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
go:
- stable
addons:
apt:
packages:
- python-virtualenv
go_import_path: github.com/temporalio/ringpop-go
install:
- go get -u github.com/Masterminds/glide
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- ./scripts/travis/get-thrift.sh
- ./scripts/travis/get-thrift-gen.sh
- ./scripts/travis/get-cram.sh
- npm install -g tcurl@v4.22.2
- make setup
env:
- RUN="make test-unit test-race test-examples lint coveralls"
- RUN="make test-integration"
matrix:
fast_finish: true
script:
- test/travis
cache:
directories:
- $HOME/.glide/cache
- _venv
before_cache: # glide touches ORIG_HEAD on `glide install`
- find $HOME/.glide/cache -name ORIG_HEAD -exec rm {} \;