Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build_targets_bzlmod: &build_targets_bzlmod
test_targets: &test_targets
- "//test/..."

buildifier: latest
buildifier: 7.3.1

tasks:
# TODO: add config for 8.0.0 once released
Expand Down
1 change: 1 addition & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ JDKS = {
"linux",
"linux_aarch64",
"linux_ppc64le",
"linux_riscv64",
"linux_s390x",
"macos",
"macos_aarch64",
Expand Down
2 changes: 1 addition & 1 deletion java/bazel/repositories_util.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ _RELEASE_CONFIGS = {
"adoptium": {
"release": "21.0.4+7",
"platforms": {
"linux": ["ppc", "s390x"],
"linux": ["ppc", "riscv64", "s390x"],
},
},
},
Expand Down
8 changes: 8 additions & 0 deletions java/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,14 @@ _REMOTE_JDK_CONFIGS_LIST = [
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4+7/OpenJDK21U-jdk_ppc64le_linux_hotspot_21.0.4_7.tar.gz", "https://mirror.bazel.build/github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4+7/OpenJDK21U-jdk_ppc64le_linux_hotspot_21.0.4_7.tar.gz"],
version = "21",
),
struct(
name = "remotejdk21_linux_riscv64",
target_compatible_with = ["@platforms//os:linux", "@platforms//cpu:riscv64"],
sha256 = "b04fd7f52d18268a935f1a7144dae802b25db600ec97156ddd46b3100cbd13da",
strip_prefix = "jdk-21.0.4+7",
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4+7/OpenJDK21U-jdk_riscv64_linux_hotspot_21.0.4_7.tar.gz", "https://mirror.bazel.build/github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4+7/OpenJDK21U-jdk_riscv64_linux_hotspot_21.0.4_7.tar.gz"],
version = "21",
),
struct(
name = "remotejdk21_linux_s390x",
target_compatible_with = ["@platforms//os:linux", "@platforms//cpu:s390x"],
Expand Down
1 change: 1 addition & 0 deletions test/repo/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ use_repo(
"remotejdk17_win",
"remotejdk17_win_arm64",
"remotejdk21_linux",
"remotejdk21_linux_riscv64",
"remotejdk21_macos",
"remotejdk21_macos_aarch64",
"remotejdk21_win",
Expand Down