forked from go-hep/hep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (39 loc) · 805 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
41
42
43
44
45
46
language: go
go_import_path: go-hep.org/x/hep
os:
- linux
env:
- TAGS="-tags travis"
matrix:
fast_finish: true
allow_failures:
- go: master
include:
- go: 1.9.x
env:
- TAGS="-tags travis"
- go: 1.10.x
env:
- TAGS="-tags travis"
- COVERAGE="-cover"
- go: master
env:
- TAGS="-tags travis"
sudo: required
notifications:
email:
recipients:
- go.hep.dev@gmail.com
on_success: always
on_failure: always
before_script:
- sudo apt-get install -qq pkg-config fuse
- sudo modprobe fuse
- sudo chmod 666 /dev/fuse
- sudo chown root:$USER /etc/fuse.conf
script:
- go get -d -t -v ./...
- go install -v $TAGS ./...
- go run ./ci/run-tests.go -race $TAGS $COVERAGE
after_success:
- bash <(curl -s https://codecov.io/bash)