prometheus/.travis.yml

21 lines
322 B
YAML
Raw Normal View History

dist: trusty
2017-04-09 01:18:19 -07:00
language: go
os:
- windows
- linux
- osx
2017-04-09 01:18:19 -07:00
go:
- 1.12.x
2017-04-09 01:18:19 -07:00
go_import_path: github.com/prometheus/tsdb
before_install:
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install make; fi
install:
- make deps
2017-04-09 01:18:19 -07:00
script:
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then make test; else make all; fi