From 54c2572a8cabaf2b29e58abe9f04327314caa6a0 Mon Sep 17 00:00:00 2001 From: philwo Date: Tue, 2 Oct 2018 05:41:00 -0700 Subject: [PATCH] Add openjdk_linux_archive java_toolchain for nojava platform. PiperOrigin-RevId: 215373045 --- WORKSPACE | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/WORKSPACE b/WORKSPACE index 4e731cf240ae5b..e79c42b09f6af0 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -122,6 +122,18 @@ http_file( ], ) +# Used by CI to test Bazel on platforms without an installed system JDK. +# TODO(twerth): Migrate to @remotejdk when https://github.com/bazelbuild/bazel/pull/6216 is merged. +new_http_archive( + name = "openjdk_linux_archive", + sha256 = "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", + urls = [ + "https://mirror.bazel.build/openjdk/azul-zulu-9.0.7.1-jdk9.0.7/zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", + ], + strip_prefix = "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules", + build_file_content = "java_runtime(name = 'runtime', srcs = glob(['**']), visibility = ['//visibility:public'])", +) + http_file( name = "openjdk_macos", sha256 = "404e7058ff91f956612f47705efbee8e175a38b505fb1b52d8c1ea98718683de",