forked from IBM/ibmcloud-storage-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (31 loc) · 744 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
language: go
go:
- 1.18.9
- tip
group: bluezone
matrix:
fast_finish: true
allow_failures:
- go: tip
cache:
bundler: true
sudo: true
# safelist
branches:
only:
- master
before_install:
- git config --global url."https://$GHE_USER:[email protected]/".insteadOf "https://github.com/"
- sudo sudo curl https://glide.sh/get | sh
- sudo apt-get install bc
before_script:
- make block-storage-attacher/deps
- go get github.com/pierrre/gotestcover
script:
- make block-storage-attacher
after_success:
- ./block-storage-attacher/scripts/calculateCoverage.sh
- ./block-storage-attacher/scripts/publishCoverage.sh
after_failure:
- ./block-storage-attacher/scripts/handleFailure.sh
- make showanalyzedeps