Update bazel flags to be more inline with upstream

During the Gerrit Hackathon, we learned some things about setting
bazel options. Use the ones recommended in upstream docs rather than
these. The outcome should be largely the same.

Change-Id: I32b4c567488f0739fb80f69dc881b9837803575c
This commit is contained in:
Monty Taylor 2019-08-25 11:29:12 +02:00
parent f3def9b84a
commit 80981a52c8

View File

@ -42,10 +42,11 @@ RUN cd /usr/src \
--local_cpu_resources=1 \ --local_cpu_resources=1 \
--host_force_python=PY3 \ --host_force_python=PY3 \
--incompatible_string_join_requires_strings=false \ --incompatible_string_join_requires_strings=false \
--host_javabase=@local_jdk//:jdk \ --define=ABSOLUTE_JAVABASE=/usr/lib/jvm/java-8-openjdk-amd64 \
--javabase=@local_jdk//:jdk \ --javabase=@bazel_tools//tools/jdk:absolute_javabase \
--host_java_toolchain=@bazel_tools//tools/jdk:toolchain_hostjdk8 \ --host_javabase=@bazel_tools//tools/jdk:absolute_javabase \
--java_toolchain=@bazel_tools//tools/jdk:toolchain_hostjdk8 \ --host_java_toolchain=@bazel_tools//tools/jdk:toolchain_vanilla \
--java_toolchain=@bazel_tools//tools/jdk:toolchain_vanilla \
${BAZEL_OPTS} ${BAZEL_OPTS}
FROM openjdk:8 FROM openjdk:8