Merge branch '2.7.x'

Closes gh-32470
pull/31255/head
Andy Wilkinson 2 years ago
commit 94ea63f43f

@ -1,12 +0,0 @@
FROM ubuntu:focal-20220826
ADD setup.sh /setup.sh
ADD get-jdk-url.sh /get-jdk-url.sh
ADD get-docker-url.sh /get-docker-url.sh
RUN ./setup.sh java17 java18
ENV JAVA_HOME /opt/openjdk
ENV PATH $JAVA_HOME/bin:$PATH
ADD docker-lib.sh /docker-lib.sh
ENTRYPOINT [ "switch", "shell=/bin/bash", "--", "codep", "/bin/docker daemon" ]

@ -5,9 +5,6 @@ case "$1" in
java17) java17)
echo "https://github.com/bell-sw/Liberica/releases/download/17.0.4.1+1/bellsoft-jdk17.0.4.1+1-linux-amd64.tar.gz" echo "https://github.com/bell-sw/Liberica/releases/download/17.0.4.1+1/bellsoft-jdk17.0.4.1+1-linux-amd64.tar.gz"
;; ;;
java18)
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/bell-sw/Liberica/releases/download/19+37/bellsoft-jdk19+37-linux-amd64.tar.gz" echo "https://github.com/bell-sw/Liberica/releases/download/19+37/bellsoft-jdk19+37-linux-amd64.tar.gz"
;; ;;

@ -181,12 +181,6 @@ resources:
source: source:
<<: *registry-image-resource-source <<: *registry-image-resource-source
repository: ((docker-hub-organization))/spring-boot-ci repository: ((docker-hub-organization))/spring-boot-ci
- name: ci-image-jdk18
type: registry-image
icon: docker
source:
<<: *registry-image-resource-source
repository: ((docker-hub-organization))/spring-boot-ci-jdk18
- name: ci-image-jdk19 - name: ci-image-jdk19
type: registry-image type: registry-image
icon: docker icon: docker
@ -215,14 +209,6 @@ resources:
access_token: ((github-ci-status-token)) access_token: ((github-ci-status-token))
branch: ((branch)) branch: ((branch))
context: build context: build
- name: repo-status-jdk18-build
type: github-status-resource
icon: eye-check-outline
source:
repository: ((github-repo-name))
access_token: ((github-ci-status-token))
branch: ((branch))
context: jdk18-build
- name: repo-status-jdk19-build - name: repo-status-jdk19-build
type: github-status-resource type: github-status-resource
icon: eye-check-outline icon: eye-check-outline
@ -267,14 +253,6 @@ jobs:
vars: vars:
ci-image-name: ci-image ci-image-name: ci-image
<<: *docker-hub-mirror-vars <<: *docker-hub-mirror-vars
- task: build-ci-image-jdk18
privileged: true
file: git-repo/ci/tasks/build-ci-image.yml
output_mapping:
image: ci-image-jdk18
vars:
ci-image-name: ci-image-jdk18
<<: *docker-hub-mirror-vars
- task: build-ci-image-jdk19 - task: build-ci-image-jdk19
privileged: true privileged: true
file: git-repo/ci/tasks/build-ci-image.yml file: git-repo/ci/tasks/build-ci-image.yml
@ -287,9 +265,6 @@ jobs:
- put: ci-image - put: ci-image
params: params:
image: ci-image/image.tar image: ci-image/image.tar
- put: ci-image-jdk18
params:
image: ci-image-jdk18/image.tar
- put: ci-image-jdk19 - put: ci-image-jdk19
params: params:
image: ci-image-jdk19/image.tar image: ci-image-jdk19/image.tar
@ -306,12 +281,6 @@ jobs:
params: params:
<<: *github-task-params <<: *github-task-params
JDK_VERSION: java17 JDK_VERSION: java17
- task: detect-jdk18-update
image: ci-image
file: git-repo/ci/tasks/detect-jdk-updates.yml
params:
<<: *github-task-params
JDK_VERSION: java18
- task: detect-jdk19-update - task: detect-jdk19-update
image: ci-image image: ci-image
file: git-repo/ci/tasks/detect-jdk-updates.yml file: git-repo/ci/tasks/detect-jdk-updates.yml
@ -405,38 +374,6 @@ jobs:
params: params:
path: git-repo path: git-repo
status: failure status: failure
- name: jdk18-build
serial: true
public: true
plan:
- get: ci-image-jdk18
- get: git-repo
trigger: true
- put: repo-status-jdk18-build
params: { state: "pending", commit: "git-repo" }
- do:
- task: build-project
image: ci-image-jdk18
privileged: true
timeout: ((task-timeout))
file: git-repo/ci/tasks/build-project.yml
params:
BRANCH: ((branch))
TOOLCHAIN_JAVA_VERSION: 18
<<: *gradle-enterprise-task-params
<<: *docker-hub-task-params
on_failure:
do:
- put: repo-status-jdk18-build
params: { state: "failure", commit: "git-repo" }
- put: slack-alert
params:
<<: *slack-fail-params
- put: repo-status-jdk18-build
params: { state: "success", commit: "git-repo" }
- put: slack-alert
params:
<<: *slack-success-params
- name: jdk19-build - name: jdk19-build
serial: true serial: true
public: true public: true
@ -742,35 +679,6 @@ jobs:
- put: slack-alert - put: slack-alert
params: params:
<<: *slack-success-params <<: *slack-success-params
- name: jdk18-run-system-tests
serial: true
public: true
plan:
- get: ci-image-jdk18
- get: git-repo
- get: paketo-builder-base-image
trigger: true
- get: daily
trigger: true
- do:
- task: run-system-tests
image: ci-image-jdk18
privileged: true
timeout: ((task-timeout))
file: git-repo/ci/tasks/run-system-tests.yml
params:
BRANCH: ((branch))
TOOLCHAIN_JAVA_VERSION: 18
<<: *gradle-enterprise-task-params
<<: *docker-hub-task-params
on_failure:
do:
- put: slack-alert
params:
<<: *slack-fail-params
- put: slack-alert
params:
<<: *slack-success-params
- name: jdk19-run-system-tests - name: jdk19-run-system-tests
serial: true serial: true
public: true public: true
@ -802,11 +710,11 @@ jobs:
<<: *slack-success-params <<: *slack-success-params
groups: groups:
- name: "builds" - name: "builds"
jobs: ["build", "jdk18-build", "jdk19-build", "windows-build"] jobs: ["build", "jdk19-build", "windows-build"]
- name: "releases" - name: "releases"
jobs: ["stage-milestone", "stage-rc", "stage-release", "promote-milestone", "promote-rc", "promote-release", "create-github-release", "publish-gradle-plugin", "publish-to-sdkman", "update-homebrew-tap"] jobs: ["stage-milestone", "stage-rc", "stage-release", "promote-milestone", "promote-rc", "promote-release", "create-github-release", "publish-gradle-plugin", "publish-to-sdkman", "update-homebrew-tap"]
- name: "system-tests" - name: "system-tests"
jobs: ["run-system-tests", "jdk18-run-system-tests", "jdk19-run-system-tests"] jobs: ["run-system-tests", "jdk19-run-system-tests"]
- name: "ci-images" - name: "ci-images"
jobs: ["build-ci-images", "detect-docker-updates", "detect-jdk-updates", "detect-ubuntu-image-updates"] jobs: ["build-ci-images", "detect-docker-updates", "detect-jdk-updates", "detect-ubuntu-image-updates"]
- name: "pull-requests" - name: "pull-requests"

@ -12,10 +12,6 @@ case "$JDK_VERSION" in
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=17" BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=17"
ISSUE_TITLE="Upgrade Java 17 version in CI image and .sdkmanrc" ISSUE_TITLE="Upgrade Java 17 version in CI image and .sdkmanrc"
;; ;;
java18)
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=18"
ISSUE_TITLE="Upgrade Java 18 version in CI image"
;;
java19) java19)
BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=19" BASE_URL="https://api.bell-sw.com/v1/liberica/releases?version-feature=19"
ISSUE_TITLE="Upgrade Java 19 version in CI image" ISSUE_TITLE="Upgrade Java 19 version in CI image"

Loading…
Cancel
Save