Skip to content

Commit 78509c5

Browse files
committed
Update to go1.8.3
Same version as k8s. Full godeps update will go out in separate commit.
1 parent 60f6e07 commit 78509c5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ language: go
77

88
matrix:
99
include:
10-
- go: 1.7
10+
- go: 1.8
1111

1212
install:
1313
- mkdir -p $HOME/gopath/src/k8s.io

cluster-autoscaler/Godeps/Godeps.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cluster-autoscaler/builder/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ MAINTAINER Marcin Wielgus "mwielgus@google.com"
1818
RUN apt-get update && apt-get install --yes git wget make\
1919
&& apt-get clean \
2020
&& rm -rf /var/lib/apt/lists/*
21-
RUN wget https://storage.googleapis.com/golang/go1.7.5.linux-amd64.tar.gz \
22-
&& tar -xvf go1.7.5.linux-amd64.tar.gz \
23-
&& rm go1.7.5.linux-amd64.tar.gz
21+
RUN wget https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz \
22+
&& tar -xvf go1.8.3.linux-amd64.tar.gz \
23+
&& rm go1.8.3.linux-amd64.tar.gz
2424

2525
ENV GOROOT /go
2626
ENV GOPATH /gopath/

hack/verify-gofmt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
2424

2525
GO_VERSION=($(go version))
2626

27-
if [[ -z $(echo "${GO_VERSION[2]}" | grep -E 'go1.2|go1.3|go1.4|go1.5|go1.6|go1.7') ]]; then
27+
if [[ -z $(echo "${GO_VERSION[2]}" | grep -E 'go1.2|go1.3|go1.4|go1.5|go1.6|go1.7|go1.8') ]]; then
2828
echo "Unknown go version '${GO_VERSION}', skipping gofmt."
2929
exit 1
3030
fi

0 commit comments

Comments
 (0)