prometheus/.travis.yml

20 lines
323 B
YAML
Raw Normal View History

2017-04-09 08:18:19 +00:00
sudo: false
language: go
go:
2017-07-14 06:00:18 +00:00
- 1.8.x
2017-04-09 08:18:19 +00:00
go_import_path: github.com/prometheus/tsdb
install:
# Hack until the dev-2.0 branch becomes master.
- go get -d github.com/prometheus/prometheus/...
- (cd $GOPATH/src/github.com/prometheus/prometheus && git checkout dev-2.0)
- go get -t ./...
2017-04-09 08:18:19 +00:00
script:
2017-07-14 06:00:18 +00:00
- go test -timeout 5m ./...
2017-04-09 08:18:19 +00:00