Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ matrix:
bazel: [
7.4.1,
8.0.0rc7,
# Temporarily disabled until java_stub_template.txt is public
# last_green,
last_green,
]

tools_flags: &tools_flags
Expand Down
2 changes: 1 addition & 1 deletion toolchains/android/toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ _ATTRS = dict(
java_stub = attr.label(
allow_files = True,
# used in android_local_test
default = "@bazel_tools//tools/java:java_stub_template.txt",
default = "//tools/jdk:java_stub_template.txt",
),
jdeps_tool = attr.label(
allow_files = True,
Expand Down
2 changes: 2 additions & 0 deletions tools/jdk/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ alias(
actual = "@rules_java//toolchains:current_host_java_runtime",
visibility = ["//visibility:public"],
)

exports_files(["java_stub_template.txt"])
Loading