mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-12 22:37:27 -08:00
08af7bbf90
Also update to the latest version of Makefile.common. Signed-off-by: Simon Pasquier <spasquie@redhat.com>
23 lines
344 B
YAML
23 lines
344 B
YAML
dist: trusty
|
|
language: go
|
|
os:
|
|
- windows
|
|
- linux
|
|
- osx
|
|
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- 1.12.x
|
|
|
|
go_import_path: github.com/prometheus/tsdb
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install make; fi
|
|
|
|
install:
|
|
- make deps
|
|
|
|
script:
|
|
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then make test; else make all; fi
|