Fix travis build using go_import_path
This commit is contained in:
parent
4d1887310b
commit
cf5118cf2b
2 changed files with 34 additions and 0 deletions
32
.travis.yml
Normal file
32
.travis.yml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
sudo: required
|
||||||
|
|
||||||
|
services:
|
||||||
|
- docker
|
||||||
|
|
||||||
|
language: go
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email: true
|
||||||
|
|
||||||
|
go:
|
||||||
|
- 1.7
|
||||||
|
|
||||||
|
go_import_path: k8s.io/ingress
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- RELEASE="ci-${TRAVIS_BUILD_ID}"
|
||||||
|
|
||||||
|
install:
|
||||||
|
- go get github.com/golang/lint/golint
|
||||||
|
- go get github.com/mattn/goveralls
|
||||||
|
- go get github.com/modocache/gover
|
||||||
|
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- export PATH=$PATH:$PWD/hack/e2e-internal/
|
||||||
|
|
||||||
|
script:
|
||||||
|
- make fmt lint vet cover
|
||||||
|
- make controllers controllers-images
|
||||||
|
#- make test-e2e
|
|
@ -1,5 +1,7 @@
|
||||||
// vim: ft=asciidoc
|
// vim: ft=asciidoc
|
||||||
|
|
||||||
|
[](https://travis-ci.org/kubernetes/ingress)
|
||||||
|
|
||||||
= Ingress
|
= Ingress
|
||||||
:toc: macro
|
:toc: macro
|
||||||
:toc-title:
|
:toc-title:
|
||||||
|
|
Loading…
Reference in a new issue