forked from sodafoundation/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·55 lines (47 loc) · 1.08 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
dist: trusty
sudo: required
group: deprecated-2017Q4
language: go
go_import_path: github.com/opensds/opensds
go:
- 1.9.x
- tip
env:
matrix:
- TARGET=amd64
# - TARGET=arm64
# - TARGET=arm
# - TARGET=386
# - TARGET=ppc64le
global:
- secure: "IhEskTMEAsBNYTQCpDSlvDxIJK5cu1r2V"
before_install:
- sudo apt-get update
- sudo apt-get install -y build-essential gcc
- sudo apt-get install -y librados-dev librbd-dev
- sudo apt-get install -y lvm2 tgt open-iscsi
matrix:
fast_finish: true
allow_failures:
- go: tip
exclude:
# - go: tip
# env: TARGET=arm
# - go: tip
# env: TARGET=arm64
# - go: tip
# env: TARGET=386
# - go: tip
# env: TARGET=ppc64le
install:
- go get github.com/mattn/goveralls
- go get github.com/wadey/gocovmerge
# Build OpenSDS Controller source code
- make all
script:
- ./script/CI/coverage
- ./script/CI/test
after_success:
- $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=cover.out
# Clean OpenSDS Controller built data
- make clean