forked from noobaa/noobaa-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
30 lines (28 loc) · 675 Bytes
/
.travis.yml
File metadata and controls
30 lines (28 loc) · 675 Bytes
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
os: linux
dist: xenial
sudo: required
services:
- docker
language: go
go:
- 1.16.x
env:
global:
- GO111MODULE=on
- GOPROXY=https://proxy.golang.org
- CHANGE_MINIKUBE_NONE_USER=true
- MINIKUBE_WANTUPDATENOTIFICATION=false
- MINIKUBE_WANTREPORTERRORPROMPT=false
- MINIKUBE_HOME=$HOME
- CHANGE_MINIKUBE_NONE_USER=true
- KUBECONFIG=$HOME/.kube/config
install:
- bash .travis/install-tools.sh
- bash .travis/install-python.sh
- bash .travis/install-minikube.sh
script:
- make gen-api-fail-if-dirty --always-make || exit 1
- make build || exit 1
- make test || exit 1
- make test-olm || exit 1
- make test-cli-flow || exit 1