Skip to content

Commit 5affcec

Browse files
committed
Update Java 19 CI to use Bellsoft Liberica
Closes spring-projectsgh-32289
1 parent 9d30a0a commit 5affcec

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

ci/images/get-jdk-url.sh

Lines changed: 1 addition & 1 deletion
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

Lines changed: 6 additions & 0 deletions
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

Lines changed: 4 additions & 0 deletions
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)