LEFT | RIGHT |
(no file at all) | |
1 #!/usr/bin/env bash | |
2 # Copyright 2012 The Go Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style | |
4 # license that can be found in the LICENSE file. | |
5 | |
6 set -e | |
7 | |
8 TAG=$1 | |
9 if [ "$TAG" == "" ]; then | |
10 echo >&2 'usage: dist.bash <tag>' | |
11 exit 2 | |
12 fi | |
13 | |
14 GOOS=${GOOS:-linux} | |
15 GOARCH=${GOARCH:-amd64} | |
16 | |
17 ROOT=/tmp/godist.linux.$GOARCH | |
18 rm -rf $ROOT | |
19 mkdir -p $ROOT | |
20 pushd $ROOT>/dev/null | |
21 | |
22 # clone Go distribution | |
23 echo "Preparing new GOROOT" | |
24 hg clone -q https://code.google.com/p/go go | |
25 pushd go > /dev/null | |
26 hg update $TAG | |
27 | |
28 # get version | |
29 pushd src > /dev/null | |
30 echo "Building dist tool to get VERSION" | |
31 ./make.bash --dist-tool 2>&1 | sed 's/^/ /' >&2 | |
32 ../bin/tool/dist version > ../VERSION | |
33 popd > /dev/null | |
34 VERSION="$(cat VERSION | awk '{ print $1 }')" | |
35 echo " Version: $VERSION" | |
36 | |
37 # remove mercurial stuff | |
38 rm -rf .hg* | |
39 | |
40 # build Go | |
41 echo "Building Go" | |
42 unset GOROOT | |
43 export GOOS | |
44 export GOARCH | |
45 export GOROOT_FINAL=/usr/local/go | |
46 pushd src > /dev/null | |
47 ./all.bash 2>&1 | sed 's/^/ /' >&2 | |
48 popd > /dev/null | |
49 popd > /dev/null | |
50 | |
51 # tar it up | |
52 DEST=go.$VERSION.$GOOS-$GOARCH.tar.gz | |
53 echo "Writing tarball: $ROOT/$DEST" | |
54 tar czf $DEST go | |
55 popd > /dev/null | |
LEFT | RIGHT |