mirror of https://github.com/golang/go.git
run.bash: remove redundant rebuilds
R=r CC=golang-dev https://golang.org/cl/4449041
This commit is contained in:
parent
c4cc9c282f
commit
98cf39e270
11
src/run.bash
11
src/run.bash
|
|
@ -33,8 +33,7 @@ xcd() {
|
|||
if $rebuild; then
|
||||
(xcd pkg
|
||||
gomake clean
|
||||
time gomake
|
||||
gomake install
|
||||
time gomake install
|
||||
) || exit $i
|
||||
fi
|
||||
|
||||
|
|
@ -43,18 +42,10 @@ gomake testshort
|
|||
) || exit $?
|
||||
|
||||
(xcd pkg/sync;
|
||||
if $rebuild; then
|
||||
gomake clean;
|
||||
time gomake
|
||||
fi
|
||||
GOMAXPROCS=10 gomake testshort
|
||||
) || exit $?
|
||||
|
||||
(xcd cmd/ebnflint
|
||||
if $rebuild; then
|
||||
gomake clean;
|
||||
time gomake
|
||||
fi
|
||||
time gomake test
|
||||
) || exit $?
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue