mirror of
https://github.com/golang/go
synced 2024-11-19 07:44:49 -07:00
d5854b7d67
Change-Id: I69cda2fb7b0047201999781cdb27f4a9013920c6 Reviewed-on: https://go-review.googlesource.com/1367 Reviewed-by: David Symonds <dsymonds@golang.org>
25 lines
722 B
Bash
Executable File
25 lines
722 B
Bash
Executable File
set -ex
|
|
|
|
export GOPATH=/gopath
|
|
export GOROOT=/goroot
|
|
PREFIX=/usr/local
|
|
: ${GO_REV:?"need to be set to the golang repo revision used to build the builder."}
|
|
: ${BUILDER_REV:?"need to be set to the go.tools repo revision for the builder."}
|
|
|
|
mkdir -p $GOROOT
|
|
git clone https://go.googlesource.com/go $GOROOT
|
|
(cd $GOROOT/src && git checkout $GO_REV && find && ./make.bash)
|
|
|
|
GO_TOOLS=$GOPATH/src/golang.org/x/tools
|
|
mkdir -p $GO_TOOLS
|
|
git clone https://go.googlesource.com/tools $GO_TOOLS
|
|
|
|
mkdir -p $PREFIX/bin
|
|
(cd $GO_TOOLS && hg pull -r $BUILDER_REV -u && GOBIN=$PREFIX/bin /goroot/bin/go install golang.org/x/tools/dashboard/builder)
|
|
|
|
rm -fR $GOROOT/bin $GOROOT/pkg $GOPATH
|
|
|
|
cd $GOROOT
|
|
git clean -f -d -x
|
|
git checkout master
|