Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
9d76ad58
Commit
9d76ad58
authored
Mar 24, 2021
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.4.x'
Closes gh-25783
parents
90b4ced7
0043093a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
75 deletions
+1
-75
Dockerfile
ci/images/ci-image-jdk15/Dockerfile
+0
-12
get-jdk-url.sh
ci/images/get-jdk-url.sh
+0
-3
pipeline.yml
ci/pipeline.yml
+1
-56
detect-jdk-updates.sh
ci/scripts/detect-jdk-updates.sh
+0
-4
No files found.
ci/images/ci-image-jdk15/Dockerfile
deleted
100644 → 0
View file @
90b4ced7
FROM
ubuntu:focal-20210217
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 java15
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" ]
ci/images/get-jdk-url.sh
View file @
9d76ad58
...
@@ -8,9 +8,6 @@ case "$1" in
...
@@ -8,9 +8,6 @@ case "$1" in
java11
)
java11
)
echo
"https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz"
echo
"https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.10_9.tar.gz"
;;
;;
java15
)
echo
"https://github.com/AdoptOpenJDK/openjdk15-binaries/releases/download/jdk-15.0.2%2B7/OpenJDK15U-jdk_x64_linux_hotspot_15.0.2_7.tar.gz"
;;
java16
)
java16
)
echo
"https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_x64_linux_hotspot_16_36.tar.gz"
echo
"https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_x64_linux_hotspot_16_36.tar.gz"
;;
;;
...
...
ci/pipeline.yml
View file @
9d76ad58
...
@@ -156,12 +156,6 @@ resources:
...
@@ -156,12 +156,6 @@ resources:
source
:
source
:
<<
:
*registry-image-resource-source
<<
:
*registry-image-resource-source
repository
:
((docker-hub-organization))/spring-boot-ci-jdk11
repository
:
((docker-hub-organization))/spring-boot-ci-jdk11
-
name
:
ci-image-jdk15
type
:
registry-image
icon
:
docker
source
:
<<
:
*registry-image-resource-source
repository
:
((docker-hub-organization))/spring-boot-ci-jdk15
-
name
:
ci-image-jdk16
-
name
:
ci-image-jdk16
type
:
registry-image
type
:
registry-image
icon
:
docker
icon
:
docker
...
@@ -192,14 +186,6 @@ resources:
...
@@ -192,14 +186,6 @@ resources:
access_token
:
((github-ci-status-token))
access_token
:
((github-ci-status-token))
branch
:
((branch))
branch
:
((branch))
context
:
jdk11-build
context
:
jdk11-build
-
name
:
repo-status-jdk15-build
type
:
github-status-resource
icon
:
eye-check-outline
source
:
repository
:
((github-repo-name))
access_token
:
((github-ci-status-token))
branch
:
((branch))
context
:
jdk15-build
-
name
:
repo-status-jdk16-build
-
name
:
repo-status-jdk16-build
type
:
github-status-resource
type
:
github-status-resource
icon
:
eye-check-outline
icon
:
eye-check-outline
...
@@ -250,13 +236,6 @@ jobs:
...
@@ -250,13 +236,6 @@ jobs:
image
:
ci-image-jdk11
image
:
ci-image-jdk11
vars
:
vars
:
ci-image-name
:
ci-image-jdk11
ci-image-name
:
ci-image-jdk11
-
task
:
build-ci-image-jdk15
privileged
:
true
file
:
git-repo/ci/tasks/build-ci-image.yml
output_mapping
:
image
:
ci-image-jdk15
vars
:
ci-image-name
:
ci-image-jdk15
-
task
:
build-ci-image-jdk16
-
task
:
build-ci-image-jdk16
privileged
:
true
privileged
:
true
file
:
git-repo/ci/tasks/build-ci-image.yml
file
:
git-repo/ci/tasks/build-ci-image.yml
...
@@ -271,9 +250,6 @@ jobs:
...
@@ -271,9 +250,6 @@ jobs:
-
put
:
ci-image-jdk11
-
put
:
ci-image-jdk11
params
:
params
:
image
:
ci-image-jdk11/image.tar
image
:
ci-image-jdk11/image.tar
-
put
:
ci-image-jdk15
params
:
image
:
ci-image-jdk15/image.tar
-
put
:
ci-image-jdk16
-
put
:
ci-image-jdk16
params
:
params
:
image
:
ci-image-jdk16/image.tar
image
:
ci-image-jdk16/image.tar
...
@@ -296,12 +272,6 @@ jobs:
...
@@ -296,12 +272,6 @@ jobs:
params
:
params
:
<<
:
*github-task-params
<<
:
*github-task-params
JDK_VERSION
:
java11
JDK_VERSION
:
java11
-
task
:
detect-jdk15-update
image
:
ci-image
file
:
git-repo/ci/tasks/detect-jdk-updates.yml
params
:
<<
:
*github-task-params
JDK_VERSION
:
java15
-
task
:
detect-jdk16-update
-
task
:
detect-jdk16-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
...
@@ -420,31 +390,6 @@ jobs:
...
@@ -420,31 +390,6 @@ jobs:
-
put
:
slack-alert
-
put
:
slack-alert
params
:
params
:
<<
:
*slack-success-params
<<
:
*slack-success-params
-
name
:
jdk15-build
serial
:
true
public
:
true
plan
:
-
get
:
ci-image-jdk15
-
get
:
git-repo
trigger
:
true
-
put
:
repo-status-jdk15-build
params
:
{
state
:
"
pending"
,
commit
:
"
git-repo"
}
-
do
:
-
task
:
build-project
image
:
ci-image-jdk15
<<
:
*build-project-task-params
on_failure
:
do
:
-
put
:
repo-status-jdk15-build
params
:
{
state
:
"
failure"
,
commit
:
"
git-repo"
}
-
put
:
slack-alert
params
:
<<
:
*slack-fail-params
-
put
:
repo-status-jdk15-build
params
:
{
state
:
"
success"
,
commit
:
"
git-repo"
}
-
put
:
slack-alert
params
:
<<
:
*slack-success-params
-
name
:
jdk16-build
-
name
:
jdk16-build
serial
:
true
serial
:
true
public
:
true
public
:
true
...
@@ -700,7 +645,7 @@ jobs:
...
@@ -700,7 +645,7 @@ jobs:
repository
:
updated-homebrew-tap-repo
repository
:
updated-homebrew-tap-repo
groups
:
groups
:
-
name
:
"
builds"
-
name
:
"
builds"
jobs
:
[
"
build"
,
"
jdk11-build"
,
"
jdk1
5-build"
,
"
jdk1
6-build"
,
"
windows-build"
]
jobs
:
[
"
build"
,
"
jdk11-build"
,
"
jdk16-build"
,
"
windows-build"
]
-
name
:
"
releases"
-
name
:
"
releases"
jobs
:
[
"
stage-milestone"
,
"
stage-rc"
,
"
stage-release"
,
"
promote-milestone"
,
"
promote-rc"
,
"
promote-release"
,
"
create-github-release"
,
"
publish-to-sdkman"
,
"
update-homebrew-tap"
]
jobs
:
[
"
stage-milestone"
,
"
stage-rc"
,
"
stage-release"
,
"
promote-milestone"
,
"
promote-rc"
,
"
promote-release"
,
"
create-github-release"
,
"
publish-to-sdkman"
,
"
update-homebrew-tap"
]
-
name
:
"
ci-images"
-
name
:
"
ci-images"
...
...
ci/scripts/detect-jdk-updates.sh
View file @
9d76ad58
...
@@ -16,10 +16,6 @@ case "$JDK_VERSION" in
...
@@ -16,10 +16,6 @@ case "$JDK_VERSION" in
BASE_URL
=
"https://api.adoptopenjdk.net/v3/assets/feature_releases/11/ga"
BASE_URL
=
"https://api.adoptopenjdk.net/v3/assets/feature_releases/11/ga"
ISSUE_TITLE
=
"Upgrade Java 11 version in CI image"
ISSUE_TITLE
=
"Upgrade Java 11 version in CI image"
;;
;;
java15
)
BASE_URL
=
"https://api.adoptopenjdk.net/v3/assets/feature_releases/15/ga"
ISSUE_TITLE
=
"Upgrade Java 15 version in CI image"
;;
java16
)
java16
)
BASE_URL
=
"https://api.adoptopenjdk.net/v3/assets/feature_releases/16/ga"
BASE_URL
=
"https://api.adoptopenjdk.net/v3/assets/feature_releases/16/ga"
ISSUE_TITLE
=
"Upgrade Java 16 version in CI image"
ISSUE_TITLE
=
"Upgrade Java 16 version in CI image"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment