Change next Go runtime to test to 1.11

pull/10073/head
Edd Robinson 2018-07-12 11:41:20 +01:00
parent 375eddebb8
commit 289a05efd6
2 changed files with 6 additions and 3 deletions

View File

@ -24,7 +24,10 @@ RUN gem install fpm
# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.9.2
# TODO(edd) this needs to be updated to 1.11 when the branch is available.
ENV GO_VERSION 1.10.3
ENV GO_ARCH amd64
RUN wget --no-verbose https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz && \
tar -C /usr/local/ -xf /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz && \

View File

@ -124,8 +124,8 @@ case $ENVIRONMENT_INDEX in
rc=$?
;;
4)
# go1.9
run_test_docker Dockerfile_build_ubuntu64_go19 test_64bit --test --junit-report
# go1.11
run_test_docker Dockerfile_build_ubuntu64_go1.11 test_64bit --test --junit-report
rc=$?
;;
"count")