Skip to content

Commit

Permalink
Updated underlying kubernetes version
Browse files Browse the repository at this point in the history
  • Loading branch information
mbogus committed Apr 12, 2019
1 parent cdb044d commit bc474eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go

go:
- "1.11"
- "1.12"

services:
- rabbitmq
Expand All @@ -17,7 +17,7 @@ before_install:
- go get -u -ldflags "-s -w" k8s.io/client-go/...
- go get -u -ldflags "-s -w" github.com/prometheus/client_golang/prometheus
- go get -u -ldflags "-s -w" github.com/prometheus/client_golang/prometheus/promhttp
- mkdir -p $HOME/gopath/src/k8s.io && git clone --depth 1 -b v1.12.2 --single-branch -q https://github.com/kubernetes/kubernetes $HOME/gopath/src/k8s.io/kubernetes
- mkdir -p $HOME/gopath/src/k8s.io && git clone --depth 1 -b v1.14.1 --single-branch -q https://github.com/kubernetes/kubernetes $HOME/gopath/src/k8s.io/kubernetes

script:
- go test -v -covermode=count -coverprofile=cover.out --tags=integration ./...
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ depend:
go get -u -ldflags "-s -w" k8s.io/client-go/...
go get -u -ldflags "-s -w" github.com/prometheus/client_golang/prometheus
go get -u -ldflags "-s -w" github.com/prometheus/client_golang/prometheus/promhttp
if [ -d $(GOPATH)/src/k8s.io/kubernetes ] ; then rm -rf $(GOPATH)/src/k8s.io/kubernetes ; fi && git clone --depth 1 -b v1.12.2 --single-branch -q https://github.com/kubernetes/kubernetes $(GOPATH)/src/k8s.io/kubernetes
if [ -d $(GOPATH)/src/k8s.io/kubernetes ] ; then rm -rf $(GOPATH)/src/k8s.io/kubernetes ; fi && git clone --depth 1 -b v1.12.7 --single-branch -q https://github.com/kubernetes/kubernetes $(GOPATH)/src/k8s.io/kubernetes


install:
Expand All @@ -52,4 +52,4 @@ test:
go test -v ./...

vet:
go tool vet -all -shadow *.go
go vet -all *.go

0 comments on commit bc474eb

Please sign in to comment.