Skip to content

Commit aa5a645

Browse files
committed
Remove Java 16 pipeline
Closes gh-28023
1 parent a540da1 commit aa5a645

File tree

4 files changed

+1
-83
lines changed

4 files changed

+1
-83
lines changed

ci/images/ci-image-jdk16/Dockerfile

-12
This file was deleted.

ci/images/get-jdk-url.sh

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ case "$1" in
88
java11)
99
echo "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jdk_x64_linux_hotspot_11.0.12_7.tar.gz"
1010
;;
11-
java16)
12-
echo "https://github.com/adoptium/temurin16-binaries/releases/download/jdk-16.0.2%2B7/OpenJDK16U-jdk_x64_linux_hotspot_16.0.2_7.tar.gz"
13-
;;
1411
java17)
1512
echo "https://github.com/adoptium/temurin17-binaries/releases/download/jdk17-2021-09-01-12-34-beta/OpenJDK17-jdk_x64_linux_hotspot_2021-09-01-12-34.tar.gz"
1613
;;

ci/pipeline.yml

+1-64
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,6 @@ resources:
163163
source:
164164
<<: *registry-image-resource-source
165165
repository: ((docker-hub-organization))/spring-boot-ci-jdk11
166-
- name: ci-image-jdk16
167-
type: registry-image
168-
icon: docker
169-
source:
170-
<<: *registry-image-resource-source
171-
repository: ((docker-hub-organization))/spring-boot-ci-jdk16
172166
- name: ci-image-jdk17
173167
type: registry-image
174168
icon: docker
@@ -199,14 +193,6 @@ resources:
199193
access_token: ((github-ci-status-token))
200194
branch: ((branch))
201195
context: jdk11-build
202-
- name: repo-status-jdk16-build
203-
type: github-status-resource
204-
icon: eye-check-outline
205-
source:
206-
repository: ((github-repo-name))
207-
access_token: ((github-ci-status-token))
208-
branch: ((branch))
209-
context: jdk16-build
210196
- name: repo-status-jdk17-build
211197
type: github-status-resource
212198
icon: eye-check-outline
@@ -259,14 +245,6 @@ jobs:
259245
vars:
260246
ci-image-name: ci-image-jdk11
261247
<<: *registry-mirror-vars
262-
- task: build-ci-image-jdk16
263-
privileged: true
264-
file: git-repo/ci/tasks/build-ci-image.yml
265-
output_mapping:
266-
image: ci-image-jdk16
267-
vars:
268-
ci-image-name: ci-image-jdk16
269-
<<: *registry-mirror-vars
270248
- task: build-ci-image-jdk17
271249
privileged: true
272250
file: git-repo/ci/tasks/build-ci-image.yml
@@ -282,9 +260,6 @@ jobs:
282260
- put: ci-image-jdk11
283261
params:
284262
image: ci-image-jdk11/image.tar
285-
- put: ci-image-jdk16
286-
params:
287-
image: ci-image-jdk16/image.tar
288263
- put: ci-image-jdk17
289264
params:
290265
image: ci-image-jdk17/image.tar
@@ -307,12 +282,6 @@ jobs:
307282
params:
308283
<<: *github-task-params
309284
JDK_VERSION: java11
310-
- task: detect-jdk16-update
311-
image: ci-image
312-
file: git-repo/ci/tasks/detect-jdk-updates.yml
313-
params:
314-
<<: *github-task-params
315-
JDK_VERSION: java16
316285
- task: detect-jdk17-update
317286
image: ci-image
318287
file: git-repo/ci/tasks/detect-jdk-updates.yml
@@ -431,38 +400,6 @@ jobs:
431400
- put: slack-alert
432401
params:
433402
<<: *slack-success-params
434-
- name: jdk16-build
435-
serial: true
436-
public: true
437-
plan:
438-
- get: ci-image-jdk16
439-
- get: git-repo
440-
trigger: true
441-
- put: repo-status-jdk16-build
442-
params: { state: "pending", commit: "git-repo" }
443-
- do:
444-
- task: build-project
445-
image: ci-image-jdk16
446-
privileged: true
447-
timeout: ((task-timeout))
448-
file: git-repo/ci/tasks/build-project.yml
449-
params:
450-
BRANCH: ((branch))
451-
TOOLCHAIN_JAVA_VERSION: 16
452-
<<: *gradle-enterprise-task-params
453-
<<: *docker-hub-task-params
454-
on_failure:
455-
do:
456-
- put: repo-status-jdk16-build
457-
params: { state: "failure", commit: "git-repo" }
458-
- put: slack-alert
459-
params:
460-
<<: *slack-fail-params
461-
- put: repo-status-jdk16-build
462-
params: { state: "success", commit: "git-repo" }
463-
- put: slack-alert
464-
params:
465-
<<: *slack-success-params
466403
- name: jdk17-build
467404
serial: true
468405
public: true
@@ -748,7 +685,7 @@ jobs:
748685
repository: updated-homebrew-tap-repo
749686
groups:
750687
- name: "builds"
751-
jobs: ["build", "jdk11-build", "jdk16-build", "jdk17-build", "windows-build"]
688+
jobs: ["build", "jdk11-build", "jdk17-build", "windows-build"]
752689
- name: "releases"
753690
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"]
754691
- name: "ci-images"

ci/scripts/detect-jdk-updates.sh

-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ case "$JDK_VERSION" in
1616
BASE_URL="https://api.adoptium.net/v3/assets/feature_releases/11/ga"
1717
ISSUE_TITLE="Upgrade Java 11 version in CI image"
1818
;;
19-
java16)
20-
BASE_URL="https://api.adoptium.net/v3/assets/feature_releases/16/ga"
21-
ISSUE_TITLE="Upgrade Java 16 version in CI image"
22-
;;
2319
java17)
2420
BASE_URL="https://api.adoptium.net/v3/assets/feature_releases/17/ea"
2521
ISSUE_TITLE="Upgrade Java 17 version in CI image"

0 commit comments

Comments
 (0)