Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(53)

Delta Between Two Patch Sets: misc/dist/linux/dist.bash

Issue 5697050: code review 5697050: misc/dist: implement binary distribution scripts in go (Closed)
Left Patch Set: Created 13 years, 1 month ago
Right Patch Set: diff -r 1e7ecf40d9e9 https://go.googlecode.com/hg Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « misc/dist/darwin/dist.bash ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b