forked from prometheus-operator/prometheus-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (42 loc) · 1.39 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
sudo: required
dist: xenial
language: go
go:
- "1.12.x"
go_import_path: github.com/coreos/prometheus-operator
env:
- GO111MODULE=on
cache:
directories:
- $GOCACHE
- $GOPATH/pkg/mod
services:
- docker
before_install:
- pip install --user awscli
- export PATH=$PATH:$HOME/.local/bin
jobs:
include:
- name: "Sanity checks and tests"
stage: test
# Check generated contents are up to date and code & docs files are formatted.
script: make --always-make format generate-in-docker && git diff --exit-code
- name: "Build Prometheus Operator rule config map to rule file CRDs CLI tool"
script: cd cmd/po-rule-migration && go install
- name: "Ensure vendor folder matches vendor.json"
script: make --always-make vendor && git diff --exit-code vendor/
- name: "Run unit tests"
script: make test-unit
- name: "Run e2e tests (Alertmanager)"
script: EXCLUDE_PROMETHEUS_TESTS=true EXCLUDE_THANOS_TESTS=true ./scripts/travis-e2e.sh
- name: "Run e2e tests (Prometheus)"
script: EXCLUDE_ALERTMANAGER_TESTS=true EXCLUDE_THANOS_TESTS=true ./scripts/travis-e2e.sh
- name: "Run e2e tests (Thanos)"
script: EXCLUDE_PROMETHEUS_TESTS=true EXCLUDE_ALERTMANAGER_TESTS=true ./scripts/travis-e2e.sh
- name: "Push Docker Image"
stage: push-docker-image
script: ./scripts/travis-push-docker-image.sh
stages:
- test
- name: push-docker-image
if: type != pull_request