Merge pull request #60 from tamird/go1.6.3

support go1.6.3
This commit is contained in:
Péter Szilágyi 2016-08-08 12:40:56 +03:00 committed by GitHub
commit 8138285102
2 changed files with 20 additions and 3 deletions

View File

@ -0,0 +1,17 @@
# Go cross compiler (xgo): Go 1.6.3
# Copyright (c) 2016 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 root Go distribution and bootstrap based on it
ENV GO_VERSION 163
RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.6.3.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=cdde5e08530c0579255d6153b08fdb3b8e47caabbe717bc7bcd7561275a87aeb && \
\
$BOOTSTRAP_PURE

View File

@ -1,4 +1,4 @@
# Go cross compiler (xgo): Go 1.7beta1
# Go cross compiler (xgo): Go 1.7rc5
# Copyright (c) 2016 Péter Szilágyi. All rights reserved.
#
# Released under the MIT license.
@ -11,7 +11,7 @@ MAINTAINER Péter Szilágyi <peterke@gmail.com>
ENV GO_VERSION 170
RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.7beta1.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=a55e718935e2be1d5b920ed262fd06885d2d7fc4eab7722aa02c205d80532e3b && \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.7rc5.linux-amd64.tar.gz && \
export ROOT_DIST_SHA=2ddf9f553aefe91d96dd3f13be55159869a221fd0111cd211dccf2cab3ee5e4a && \
\
$BOOTSTRAP_PURE