aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-15 13:01:07 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-15 14:45:22 +0000
commit0a7a3d2aff20df4e3bffd3f8d5564cfd3cfc2a2b (patch)
tree426b8fda573d96809a51c0e878a72b6d99310a51 /scripts
parent0aac5840f268e4c6505f9d9401e2dd036f947e4a (diff)
Fix bazel args in the bootstrap test
-- MOS_MIGRATED_REVID=112239696
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bootstrap/bootstrap.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/bootstrap/bootstrap.sh b/scripts/bootstrap/bootstrap.sh
index 94f0bff60f..e0b42d6d5a 100755
--- a/scripts/bootstrap/bootstrap.sh
+++ b/scripts/bootstrap/bootstrap.sh
@@ -83,7 +83,8 @@ function bootstrap_test() {
run_silent ${BAZEL_BIN} --nomaster_bazelrc --bazelrc=${BAZELRC} clean \
--expunge || return $?
run_silent ${BAZEL_BIN} --nomaster_bazelrc --bazelrc=${BAZELRC} build \
- ${BAZEL_ARGS} \
+ ${EXTRA_BAZEL_ARGS-} \
+ --strategy=Javac=worker --worker_quit_after_build \
--fetch --nostamp \
--javacopt="-source ${JAVA_VERSION} -target ${JAVA_VERSION}" \
${BAZEL_TARGET} || return $?