mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-02 08:31:11 -08:00
8913617a9e
Signed-off-by: Krasi Georgiev <kgeorgie@redhat.com>
24 lines
436 B
YAML
24 lines
436 B
YAML
# sudo is enabled because it provides more memory which was needed to run go test -race
|
|
sudo: required
|
|
dist: trusty
|
|
language: go
|
|
os:
|
|
- windows
|
|
- linux
|
|
- osx
|
|
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.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
|