-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This needs to be integrated as an action, but should run daily so we can pick up the latest temurin builds for java21 at the moment and other java builds in the future Signed-off-by: Appu Goundan <[email protected]>
- Loading branch information
1 parent
cfc0384
commit 70d1f26
Showing
4 changed files
with
118 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,69 @@ | ||
"repositories for java" | ||
|
||
# TODO: this should be auto generated by a script | ||
|
||
load("//private/remote:temurin_archive.bzl", "temurin_archive") | ||
|
||
JAVA_RELEASE_VERSIONS = { | ||
"temurin21_jre_amd64": "21.0.2", | ||
"temurin21_jdk_amd64": "21.0.2", | ||
"temurin21_jre_arm64": "21.0.2", | ||
"temurin21_jdk_arm64": "21.0.2", | ||
"temurin21_jre_ppc64le": "21.0.2", | ||
"temurin21_jdk_ppc64le": "21.0.2", | ||
"temurin21_jre_amd64": "21.0.4", | ||
"temurin21_jdk_amd64": "21.0.4", | ||
"temurin21_jre_arm64": "21.0.4", | ||
"temurin21_jdk_arm64": "21.0.4", | ||
"temurin21_jre_ppc64le": "21.0.4", | ||
"temurin21_jdk_ppc64le": "21.0.4", | ||
} | ||
|
||
def repositories(): | ||
"java archives" | ||
temurin_archive( | ||
name = "temurin21_jre_amd64", | ||
sha256 = "51141204fe01a9f9dd74eab621d5eca7511eac67315c9975dbde5f2625bdca55", | ||
strip_prefix = "jdk-21.0.2+13-jre", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_x64_linux_hotspot_21.0.2_13.tar.gz"], | ||
version = "21.0.2+13", | ||
sha256 = "d3affbb011ca6c722948f6345d15eba09bded33f9947d4d67e09723e2518c12a", | ||
strip_prefix = "jdk-21.0.4+7-jre", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_x64_linux_hotspot_21.0.4_7.tar.gz"], | ||
version = "21.0.4+7", | ||
architecture = "amd64", | ||
control = "//java:control", | ||
) | ||
|
||
temurin_archive( | ||
name = "temurin21_jdk_amd64", | ||
sha256 = "454bebb2c9fe48d981341461ffb6bf1017c7b7c6e15c6b0c29b959194ba3aaa5", | ||
strip_prefix = "jdk-21.0.2+13", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jdk_x64_linux_hotspot_21.0.2_13.tar.gz"], | ||
version = "21.0.2+13", | ||
sha256 = "51fb4d03a4429c39d397d3a03a779077159317616550e4e71624c9843083e7b9", | ||
strip_prefix = "jdk-21.0.4+7", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jdk_x64_linux_hotspot_21.0.4_7.tar.gz"], | ||
version = "21.0.4+7", | ||
architecture = "amd64", | ||
control = "//java:control", | ||
) | ||
|
||
temurin_archive( | ||
name = "temurin21_jre_arm64", | ||
sha256 = "64c78854184c92a4da5cda571c8e357043bfaf03a03434eef58550cc3410d8a4", | ||
strip_prefix = "jdk-21.0.2+13-jre", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.2_13.tar.gz"], | ||
version = "21.0.2+13", | ||
sha256 = "58845ce4275f3ec74fba075597c8216bb201773da036c4703be8b7b7b457355d", | ||
strip_prefix = "jdk-21.0.4+7-jre", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_aarch64_linux_hotspot_21.0.4_7.tar.gz"], | ||
version = "21.0.4+7", | ||
architecture = "arm64", | ||
control = "//java:control", | ||
) | ||
|
||
temurin_archive( | ||
name = "temurin21_jdk_arm64", | ||
sha256 = "3ce6a2b357e2ef45fd6b53d6587aa05bfec7771e7fb982f2c964f6b771b7526a", | ||
strip_prefix = "jdk-21.0.2+13", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jdk_aarch64_linux_hotspot_21.0.2_13.tar.gz"], | ||
version = "21.0.2+13", | ||
sha256 = "d768eecddd7a515711659e02caef8516b7b7177fa34880a56398fd9822593a79", | ||
strip_prefix = "jdk-21.0.4+7", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jdk_aarch64_linux_hotspot_21.0.4_7.tar.gz"], | ||
version = "21.0.4+7", | ||
architecture = "arm64", | ||
control = "//java:control", | ||
) | ||
|
||
temurin_archive( | ||
name = "temurin21_jre_ppc64le", | ||
sha256 = "caaf48e50787b80b810dc08ee91bd4ffe0d0696bd14906a92f05bf8c14aabb22", | ||
strip_prefix = "jdk-21.0.2+13-jre", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jre_ppc64le_linux_hotspot_21.0.2_13.tar.gz"], | ||
version = "21.0.2+13", | ||
sha256 = "46cf93653e2b553fb1c91760cfe2ff20999ba358d648d2df69e5948784768440", | ||
strip_prefix = "jdk-21.0.4+7-jre", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_ppc64le_linux_hotspot_21.0.4_7.tar.gz"], | ||
version = "21.0.4+7", | ||
architecture = "ppc64le", | ||
control = "//java:control", | ||
) | ||
|
||
temurin_archive( | ||
name = "temurin21_jdk_ppc64le", | ||
sha256 = "d08de863499d8851811c893e8915828f2cd8eb67ed9e29432a6b4e222d80a12f", | ||
strip_prefix = "jdk-21.0.2+13", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jdk_ppc64le_linux_hotspot_21.0.2_13.tar.gz"], | ||
version = "21.0.2+13", | ||
sha256 = "c208cd0fb90560644a90f928667d2f53bfe408c957a5e36206585ad874427761", | ||
strip_prefix = "jdk-21.0.4+7", | ||
urls = ["https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jdk_ppc64le_linux_hotspot_21.0.4_7.tar.gz"], | ||
version = "21.0.4+7", | ||
architecture = "ppc64le", | ||
control = "//java:control", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
#!/usr/bin/env bash | ||
set -o pipefail -o errexit -o nounset | ||
|
||
function get_version() { | ||
grep "temurin21_jre_amd64\":" ./java_archives.bzl | cut -d":" -f2 | sed 's/[ ,"]//g' | ||
} | ||
|
||
function underscore_encode() { | ||
echo "${1/\+/_}" | ||
} | ||
|
||
function generate_java_archives() { | ||
local releases latest_release release_name version plain_version archs archs_deb variants | ||
|
||
releases=$(curl -sSL https://api.github.com/repos/adoptium/temurin21-binaries/releases) | ||
latest_release=$(echo "$releases" | jq -r 'map(select(.name | test("jdk-([0-9.]+)(\\+([0-9]+))?"))) | sort_by(.published_at) | last') | ||
release_name=$(echo "$latest_release" | jq -r '.name') | ||
version=${release_name#jdk-} | ||
plain_version=$([[ $version =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]] && echo "${BASH_REMATCH[0]}") | ||
archs=("x64" "aarch64" "ppc64le") | ||
archs_deb=("amd64" "arm64" "ppc64le") | ||
variants=("jre" "jdk") | ||
|
||
cat << EOM | ||
"repositories for java" | ||
load("//private/remote:temurin_archive.bzl", "temurin_archive") | ||
JAVA_RELEASE_VERSIONS = { | ||
"temurin21_jre_amd64": "${plain_version}", | ||
"temurin21_jdk_amd64": "${plain_version}", | ||
"temurin21_jre_arm64": "${plain_version}", | ||
"temurin21_jdk_arm64": "${plain_version}", | ||
"temurin21_jre_ppc64le": "${plain_version}", | ||
"temurin21_jdk_ppc64le": "${plain_version}", | ||
} | ||
def repositories(): | ||
"java archives" | ||
EOM | ||
|
||
for arch_index in "${!archs[@]}"; do | ||
for variant in "${variants[@]}"; do | ||
local arch arch_deb name archive_url sha256_name sha256_url sha256 strip_prefix_suffix | ||
|
||
arch=${archs[arch_index]} | ||
arch_deb=${archs_deb[arch_index]} | ||
name="OpenJDK21U-${variant}_${arch}_linux_hotspot_$(underscore_encode "${version}").tar.gz" | ||
archive_url=$(echo "$latest_release" | jq -r --arg NAME "$name" '.assets.[] | select(.name==$NAME) | .browser_download_url') | ||
[ "$archive_url" ] || { echo "no url found for ${name}"; exit 1; } | ||
sha256_name="${name}.sha256.txt" | ||
sha256_url=$(echo "$latest_release" | jq -r --arg NAME "$sha256_name" '.assets.[] | select(.name==$NAME) | .browser_download_url') | ||
[ "$sha256_url" ] || { echo "no url found for ${sha256_name}"; exit 1; } | ||
sha256=$(curl -sSL "$sha256_url" | cut -d' ' -f1) | ||
[ "$sha256" ] || { echo "no sha256 downloaded for ${name}"; exit 1; } | ||
|
||
strip_prefix_suffix="-jre" | ||
if [[ ${variant} == "jdk" ]]; then | ||
strip_prefix_suffix="" | ||
fi | ||
|
||
cat << EOM | ||
temurin_archive( | ||
name = "temurin21_${variant}_${arch_deb}", | ||
sha256 = "${sha256}", | ||
strip_prefix = "${release_name}${strip_prefix_suffix}", | ||
urls = ["${archive_url}"], | ||
version = "${version}", | ||
architecture = "${arch_deb}", | ||
control = "//java:control", | ||
) | ||
EOM | ||
|
||
done | ||
done | ||
} | ||
|
||
old_version=$(get_version) | ||
generate_java_archives > java_archives.bzl | ||
new_version=$(get_version) | ||
sed -i -e "s/$old_version/$new_version/g" java/testdata/java21_* |