Skip to content

Commit 7566666

Browse files
committed
Merge branch '2.6.x' into 2.7.x
Closes gh-32467
2 parents 3620959 + 5affcec commit 7566666

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

ci/images/get-jdk-url.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ case "$1" in
1515
echo "https://github.com/bell-sw/Liberica/releases/download/18.0.2.1+1/bellsoft-jdk18.0.2.1+1-linux-amd64.tar.gz"
1616
;;
1717
java19)
18-
echo "https://github.com/adoptium/temurin19-binaries/releases/download/jdk19-2022-09-06-18-04-beta/OpenJDK19U-jdk_x64_linux_hotspot_2022-09-06-18-04.tar.gz"
18+
echo "https://github.com/bell-sw/Liberica/releases/download/19+37/bellsoft-jdk19+37-linux-amd64.tar.gz"
1919
;;
2020
*)
2121
echo $"Unknown java version"

ci/pipeline.yml

+6
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,12 @@ jobs:
374374
params:
375375
<<: *github-task-params
376376
JDK_VERSION: java18
377+
- task: detect-jdk19-update
378+
image: ci-image
379+
file: git-repo/ci/tasks/detect-jdk-updates.yml
380+
params:
381+
<<: *github-task-params
382+
JDK_VERSION: java19
377383
- name: detect-ubuntu-image-updates
378384
plan:
379385
- get: git-repo

ci/scripts/detect-jdk-updates.sh

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ case "$JDK_VERSION" in
2424
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=18"
2525
ISSUE_TITLE="Upgrade Java 18 version in CI image"
2626
;;
27+
java19)
28+
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=19"
29+
ISSUE_TITLE="Upgrade Java 19 version in CI image"
30+
;;
2731
*)
2832
echo $"Unknown java version"
2933
exit 1;

0 commit comments

Comments
 (0)