18 lines
645 B
YAML
18 lines
645 B
YAML
language: go
|
|
go:
|
|
- 1.3
|
|
before_script:
|
|
- go get github.com/stretchr/testify/mock
|
|
- go get github.com/kr/pretty
|
|
- wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb
|
|
- sudo dpkg -i influxdb_latest_amd64.deb
|
|
- sudo service influxdb start
|
|
script:
|
|
- go test -v -race github.com/google/cadvisor/container
|
|
- go test -v -race github.com/google/cadvisor/info
|
|
- go test -v -race github.com/google/cadvisor/client
|
|
- go test -v -race github.com/google/cadvisor/sampling
|
|
- go test -v -race github.com/google/cadvisor/storage/memory
|
|
- go test -v -race github.com/google/cadvisor/storage/influxdb
|
|
- go build github.com/google/cadvisor
|