Merge branch '2.7.x'
This commit is contained in:
commit
d2cf7a3cff
|
|
@ -9,7 +9,7 @@ case "$1" in
|
||||||
echo "https://github.com/bell-sw/Liberica/releases/download/18.0.2.1+1/bellsoft-jdk18.0.2.1+1-linux-amd64.tar.gz"
|
echo "https://github.com/bell-sw/Liberica/releases/download/18.0.2.1+1/bellsoft-jdk18.0.2.1+1-linux-amd64.tar.gz"
|
||||||
;;
|
;;
|
||||||
java19)
|
java19)
|
||||||
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"
|
echo "https://github.com/bell-sw/Liberica/releases/download/19+37/bellsoft-jdk19+37-linux-amd64.tar.gz"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo $"Unknown java version"
|
echo $"Unknown java version"
|
||||||
|
|
|
||||||
|
|
@ -312,6 +312,12 @@ jobs:
|
||||||
params:
|
params:
|
||||||
<<: *github-task-params
|
<<: *github-task-params
|
||||||
JDK_VERSION: java18
|
JDK_VERSION: java18
|
||||||
|
- task: detect-jdk19-update
|
||||||
|
image: ci-image
|
||||||
|
file: git-repo/ci/tasks/detect-jdk-updates.yml
|
||||||
|
params:
|
||||||
|
<<: *github-task-params
|
||||||
|
JDK_VERSION: java19
|
||||||
- name: detect-ubuntu-image-updates
|
- name: detect-ubuntu-image-updates
|
||||||
plan:
|
plan:
|
||||||
- get: git-repo
|
- get: git-repo
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,10 @@ case "$JDK_VERSION" in
|
||||||
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=18"
|
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=18"
|
||||||
ISSUE_TITLE="Upgrade Java 18 version in CI image"
|
ISSUE_TITLE="Upgrade Java 18 version in CI image"
|
||||||
;;
|
;;
|
||||||
|
java19)
|
||||||
|
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=19"
|
||||||
|
ISSUE_TITLE="Upgrade Java 19 version in CI image"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo $"Unknown java version"
|
echo $"Unknown java version"
|
||||||
exit 1;
|
exit 1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue