Update to Go 1.3.3!

This commit is contained in:
Péter Szilágyi 2014-10-03 15:22:01 +03:00
parent 297157dbd9
commit 8b07996b81
3 changed files with 35 additions and 2 deletions

View File

@ -71,7 +71,7 @@ You can select which Go release to work with through the `-go` command line flag
to xgo and if the specific release was already integrated, it will automatically to xgo and if the specific release was already integrated, it will automatically
be retrieved and installed. be retrieved and installed.
$ xgo -go 1.3.0 github.com/project-iris/iris $ xgo -go 1.3.3 github.com/project-iris/iris
Since xgo depends on not only the official releases, but also on Dave Cheney's Since xgo depends on not only the official releases, but also on Dave Cheney's
ARM packages, there will be a slight delay between official Go updates and the ARM packages, there will be a slight delay between official Go updates and the

View File

@ -0,0 +1,33 @@
# Go cross compiler (xgo): Go 1.3.3 layer
# Copyright (c) 2014 Péter Szilágyi. All rights reserved.
#
# Released under the MIT license.
FROM karalabe/xgo-base
MAINTAINER Péter Szilágyi <peterke@gmail.com>
# Configure the Go packages and bootstrap them
RUN \
export DIST_LINUX_64=https://storage.googleapis.com/golang/go1.3.3.linux-amd64.tar.gz && \
export DIST_LINUX_64_SHA1=14068fbe349db34b838853a7878621bbd2b24646 && \
\
export DIST_LINUX_32=https://storage.googleapis.com/golang/go1.3.3.linux-386.tar.gz && \
export DIST_LINUX_32_SHA1=9eb426d5505de55729e2656c03d85722795dd85e && \
\
export DIST_LINUX_ARM=http://dave.cheney.net/paste/go.1.3.3.linux-arm~armv5-1.tar.gz && \
export DIST_LINUX_ARM_SHA1=78789a5e3288d9e86e0cd667e6588775594eae87 && \
\
export DIST_OSX_64=https://storage.googleapis.com/golang/go1.3.3.darwin-amd64-osx10.6.tar.gz && \
export DIST_OSX_64_SHA1=dfe68de684f6e8d9c371d01e6d6a522efe3b8942 && \
\
export DIST_OSX_32=https://storage.googleapis.com/golang/go1.3.3.darwin-386-osx10.6.tar.gz && \
export DIST_OSX_32_SHA1=04b3e38549183e984f509c07ad40d8bcd577a702 && \
\
export DIST_WIN_64=https://storage.googleapis.com/golang/go1.3.3.windows-amd64.zip && \
export DIST_WIN_64_SHA1=5f0b3b104d3db09edd32ef1d086ba20bafe01ada && \
\
export DIST_WIN_32=https://storage.googleapis.com/golang/go1.3.3.windows-386.zip && \
export DIST_WIN_32_SHA1=ba99083b22e0b22b560bb2d28b9b99b405d01b6b && \
\
$BOOTSTRAP

View File

@ -3,6 +3,6 @@
# #
# Released under the MIT license. # Released under the MIT license.
FROM karalabe/xgo-1.3.0 FROM karalabe/xgo-1.3.3
MAINTAINER Péter Szilágyi <peterke@gmail.com> MAINTAINER Péter Szilágyi <peterke@gmail.com>