mirror of
https://github.com/prometheus-operator/prometheus-operator.git
synced 2025-04-16 09:16:38 +00:00
18 lines
510 B
YAML
18 lines
510 B
YAML
sudo: required
|
|
language: go
|
|
go:
|
|
- 1.9
|
|
services:
|
|
- docker
|
|
jobs:
|
|
include:
|
|
- stage: Check generated contents are up to date and code is formatted.
|
|
script: ./scripts/check-make-generate.sh
|
|
- stage: Build Prometheus config reloader
|
|
script: cd contrib/prometheus-config-reloader && make build
|
|
- stage: Ensure vendor folder matches vendor.json
|
|
script: ./scripts/govendor-ensure.sh
|
|
- stage: Unit tests
|
|
script: make test
|
|
- stage: E2e tests
|
|
script: travis_wait 60 ./scripts/travis-e2e.sh
|