dashboard: more environment cleanups
sid was trying to use hg still. And remove curl everywhere (except nacl). It's unnecessary. Change-Id: I2a235d83b2bc7cf599c8de5796c724d8f368348e Reviewed-on: https://go-review.googlesource.com/1368 Reviewed-by: David Symonds <dsymonds@golang.org>
This commit is contained in:
parent
d5854b7d67
commit
551edbff13
|
@ -1,8 +1,7 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
# For running curl to get the hg starter tarballs (faster than hg clone).
|
apt-get install -y --no-install-recommends ca-certificates
|
||||||
apt-get install -y --no-install-recommends curl ca-certificates
|
|
||||||
# For building Go's bootstrap 'dist' prog
|
# For building Go's bootstrap 'dist' prog
|
||||||
apt-get install -y --no-install-recommends gcc libc6-dev
|
apt-get install -y --no-install-recommends gcc libc6-dev
|
||||||
# For interacting with the Go source & subrepos:
|
# For interacting with the Go source & subrepos:
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
# For running curl to get the hg starter tarballs (faster than hg clone).
|
apt-get install -y --no-install-recommends ca-certificates
|
||||||
apt-get install -y --no-install-recommends curl ca-certificates
|
|
||||||
# Optionally used by some net/http tests:
|
# Optionally used by some net/http tests:
|
||||||
apt-get install -y --no-install-recommends strace
|
apt-get install -y --no-install-recommends strace
|
||||||
# For building Go's bootstrap 'dist' prog
|
# For building Go's bootstrap 'dist' prog
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
# For running curl to get the hg starter tarballs (faster than hg clone).
|
apt-get install -y --no-install-recommends ca-certificates
|
||||||
apt-get install -y --no-install-recommends curl ca-certificates
|
|
||||||
# Optionally used by some net/http tests:
|
# Optionally used by some net/http tests:
|
||||||
apt-get install -y --no-install-recommends strace
|
apt-get install -y --no-install-recommends strace
|
||||||
# For building Go's bootstrap 'dist' prog
|
# For building Go's bootstrap 'dist' prog
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
# For running curl to get the hg starter tarballs (faster than hg clone).
|
# curl is needed to fetch the sel_ldr nacl binaries:
|
||||||
apt-get install -y --no-install-recommends curl ca-certificates
|
apt-get install -y --no-install-recommends curl ca-certificates
|
||||||
# For building Go's bootstrap 'dist' prog
|
# For building Go's bootstrap 'dist' prog
|
||||||
apt-get install -y --no-install-recommends gcc libc6-dev
|
apt-get install -y --no-install-recommends gcc libc6-dev
|
||||||
|
|
|
@ -15,7 +15,7 @@ mkdir -p $GO_TOOLS
|
||||||
git clone https://go.googlesource.com/tools $GO_TOOLS
|
git clone https://go.googlesource.com/tools $GO_TOOLS
|
||||||
|
|
||||||
mkdir -p $PREFIX/bin
|
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)
|
(cd $GO_TOOLS && git reset --hard $BUILDER_REV && GOBIN=$PREFIX/bin /goroot/bin/go install golang.org/x/tools/dashboard/builder)
|
||||||
|
|
||||||
rm -fR $GOROOT/bin $GOROOT/pkg $GOPATH
|
rm -fR $GOROOT/bin $GOROOT/pkg $GOPATH
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
# For running curl to get the hg starter tarballs (faster than hg clone).
|
apt-get install -y --no-install-recommends ca-certificates
|
||||||
apt-get install -y --no-install-recommends curl ca-certificates
|
|
||||||
# Optionally used by some net/http tests:
|
# Optionally used by some net/http tests:
|
||||||
apt-get install -y --no-install-recommends strace
|
apt-get install -y --no-install-recommends strace
|
||||||
# For building Go's bootstrap 'dist' prog
|
# For building Go's bootstrap 'dist' prog
|
||||||
|
|
Loading…
Reference in New Issue