mirror of
https://github.com/golang/go
synced 2024-11-19 07:04:43 -07:00
c8579e57cb
Change-Id: I9b79bd301d0b75ca1f16d4a05e3cb687a8428c14 Reviewed-on: https://go-review.googlesource.com/19884 Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
71 lines
1.7 KiB
Bash
Executable File
71 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2015 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# Usage: buildall.sh [-e] [pattern]
|
|
#
|
|
# buildall.bash builds the standard library for all Go-supported
|
|
# architectures. It is used by the "all-compile" trybot builder,
|
|
# as a smoke test to quickly flag portability issues.
|
|
#
|
|
# Options:
|
|
# -e: stop at first failure
|
|
|
|
if [ ! -f run.bash ]; then
|
|
echo 'buildall.bash must be run from $GOROOT/src' 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
sete=false
|
|
if [ "$1" = "-e" ]; then
|
|
sete=true
|
|
shift
|
|
fi
|
|
|
|
if [ "$sete" = true ]; then
|
|
set -e
|
|
fi
|
|
|
|
pattern="$1"
|
|
if [ "$pattern" = "" ]; then
|
|
pattern=.
|
|
fi
|
|
|
|
./make.bash || exit 1
|
|
GOROOT="$(cd .. && pwd)"
|
|
|
|
# put linux, nacl first in the target list to get all the architectures up front.
|
|
targets="$((../bin/go tool dist list | sed -n 's/^\(.*\)\/\(.*\)/\1-\2/p'; echo linux-386-387 linux-arm-arm5) | sort | egrep -v android-arm | egrep "$pattern" | egrep 'linux|nacl')
|
|
$(../bin/go tool dist list | sed -n 's/^\(.*\)\/\(.*\)/\1-\2/p' | egrep -v 'android-arm|darwin-arm' | egrep "$pattern" | egrep -v 'linux|nacl')"
|
|
|
|
failed=false
|
|
for target in $targets
|
|
do
|
|
echo ""
|
|
echo "### Building $target"
|
|
export GOOS=$(echo $target | sed 's/-.*//')
|
|
export GOARCH=$(echo $target | sed 's/.*-//')
|
|
unset GO386 GOARM
|
|
if [ "$GOARCH" = "arm5" ]; then
|
|
export GOARCH=arm
|
|
export GOARM=5
|
|
fi
|
|
if [ "$GOARCH" = "387" ]; then
|
|
export GOARCH=386
|
|
export GO386=387
|
|
fi
|
|
if ! "$GOROOT/bin/go" build -a std cmd; then
|
|
failed=true
|
|
if $sete; then
|
|
exit 1
|
|
fi
|
|
fi
|
|
done
|
|
|
|
if [ "$failed" = "true" ]; then
|
|
echo "" 1>&2
|
|
echo "Build(s) failed." 1>&2
|
|
exit 1
|
|
fi
|