Skip to content

Commit d2cf7a3

Browse files
committed
Merge branch '2.7.x'
2 parents b084019 + 7566666 commit d2cf7a3

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
@@ -9,7 +9,7 @@ case "$1" in
99
echo "https://github.com/bell-sw/Liberica/releases/download/18.0.2.1+1/bellsoft-jdk18.0.2.1+1-linux-amd64.tar.gz"
1010
;;
1111
java19)
12-
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"
12+
echo "https://github.com/bell-sw/Liberica/releases/download/19+37/bellsoft-jdk19+37-linux-amd64.tar.gz"
1313
;;
1414
*)
1515
echo $"Unknown java version"

ci/pipeline.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,12 @@ jobs:
312312
params:
313313
<<: *github-task-params
314314
JDK_VERSION: java18
315+
- task: detect-jdk19-update
316+
image: ci-image
317+
file: git-repo/ci/tasks/detect-jdk-updates.yml
318+
params:
319+
<<: *github-task-params
320+
JDK_VERSION: java19
315321
- name: detect-ubuntu-image-updates
316322
plan:
317323
- get: git-repo

ci/scripts/detect-jdk-updates.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ case "$JDK_VERSION" in
1616
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=18"
1717
ISSUE_TITLE="Upgrade Java 18 version in CI image"
1818
;;
19+
java19)
20+
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=19"
21+
ISSUE_TITLE="Upgrade Java 19 version in CI image"
22+
;;
1923
*)
2024
echo $"Unknown java version"
2125
exit 1;

0 commit comments

Comments
 (0)