Skip to content

Commit 6b221da

Browse files
jesselangohaiwalt
authored andcommitted
Upgrade Ubuntu version (and golang version) in builder (#83)
Travis builds were failing because Ubuntu 16.10 could not find all of it's package repository indexes. Using a newer version of Ubuntu resolved that issue. go package revs from 1.6.3 -> 1.8.3
1 parent 1c220f9 commit 6b221da

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile.builder

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM ubuntu:16.10
1+
FROM ubuntu:17.10
22

3-
# This is actually Go 1.6.3, despite appearances (as determined by
3+
# This is actually Go 1.8.3, despite appearances (as determined by
44
# running `go version`)
5-
ENV GO_PACKAGE_VERSION 2:1.6.1+1ubuntu2
5+
ENV GO_PACKAGE_VERSION 2:1.8~1ubuntu1
66
ENV GOPATH /gopath
77
ENV PATH=${GOPATH}/bin:${PATH}
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## Dependencies
99

10-
* Go v1.6+
10+
* Go v1.9+
1111
* Docker v1.10.3+
1212

1313
## Getting up and running

scripts/smoke_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ docker rm "${container_id}"
3838

3939
chmod a+x "${executable_name}"
4040

41-
for PLATFORM in alpine:3.4 ubuntu:16.10
41+
for PLATFORM in alpine:3.4 ubuntu:17.10
4242
do
4343
echo "--- Running ${executable_name} on ${PLATFORM}"
4444
set -x

0 commit comments

Comments
 (0)