Skip to content

Commit a47bc41

Browse files
committed
Merge branch '2.2.x' into 2.3.x
2 parents 945347c + e8d2494 commit a47bc41

File tree

5 files changed

+49
-48
lines changed

5 files changed

+49
-48
lines changed

ci/parameters.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ artifactory-server: "https://repo.spring.io"
88
branch: "2.3.x"
99
milestone: "2.3.x"
1010
build-name: "spring-boot"
11-
pipeline-name: "spring-boot"
11+
pipeline-name: "spring-boot-2.3.x"
12+
ci-image-name: "spring-boot-ci-23x"
1213
concourse-url: "https://ci.spring.io"
1314
bintray-subject: "spring"
1415
bintray-repo: "jars"

ci/pipeline.yml

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -132,24 +132,24 @@ resources:
132132
uri: ((github-repo))
133133
branch: ((branch))
134134
paths: ["ci/images/*"]
135-
- name: spring-boot-ci-image
135+
- name: ci-image
136136
type: docker-image
137137
icon: docker
138138
source:
139139
<<: *docker-resource-source
140-
repository: ((docker-hub-organization))/spring-boot-ci-image
141-
- name: spring-boot-jdk11-ci-image
140+
repository: ((docker-hub-organization))/((ci-image-name))
141+
- name: ci-image-jdk11
142142
type: docker-image
143143
icon: docker
144144
source:
145145
<<: *docker-resource-source
146-
repository: ((docker-hub-organization))/spring-boot-jdk11-ci-image
147-
- name: spring-boot-jdk15-ci-image
146+
repository: ((docker-hub-organization))/((ci-image-name))-jdk11
147+
- name: ci-image-jdk15
148148
type: docker-image
149149
icon: docker
150150
source:
151151
<<: *docker-resource-source
152-
repository: ((docker-hub-organization))/spring-boot-jdk15-ci-image
152+
repository: ((docker-hub-organization))/((ci-image-name))-jdk15
153153
- name: artifactory-repo
154154
type: artifactory-resource
155155
icon: package-variant
@@ -199,44 +199,44 @@ resources:
199199
icon: clock-outline
200200
source: { interval: "24h" }
201201
jobs:
202-
- name: build-spring-boot-ci-images
202+
- name: build-ci-images
203203
plan:
204204
- get: ci-images-git-repo
205205
trigger: true
206206
- in_parallel:
207-
- put: spring-boot-ci-image
207+
- put: ci-image
208208
params:
209209
build: ci-images-git-repo/ci/images
210-
dockerfile: ci-images-git-repo/ci/images/spring-boot-ci-image/Dockerfile
211-
- put: spring-boot-jdk11-ci-image
210+
dockerfile: ci-images-git-repo/ci/images/ci-image/Dockerfile
211+
- put: ci-image-jdk11
212212
params:
213213
build: ci-images-git-repo/ci/images
214-
dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk11-ci-image/Dockerfile
215-
- put: spring-boot-jdk15-ci-image
214+
dockerfile: ci-images-git-repo/ci/images/ci-image-jdk11/Dockerfile
215+
- put: ci-image-jdk15
216216
params:
217217
build: ci-images-git-repo/ci/images
218-
dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk15-ci-image/Dockerfile
218+
dockerfile: ci-images-git-repo/ci/images/ci-image-jdk15/Dockerfile
219219
- name: detect-jdk-updates
220220
plan:
221221
- get: git-repo
222222
- get: every-wednesday
223223
trigger: true
224-
- get: spring-boot-ci-image
224+
- get: ci-image
225225
- in_parallel:
226226
- task: detect-jdk8-update
227-
image: spring-boot-ci-image
227+
image: ci-image
228228
file: git-repo/ci/tasks/detect-jdk-updates.yml
229229
params:
230230
<<: *github-task-params
231231
JDK_VERSION: java8
232232
- task: detect-jdk11-update
233-
image: spring-boot-ci-image
233+
image: ci-image
234234
file: git-repo/ci/tasks/detect-jdk-updates.yml
235235
params:
236236
<<: *github-task-params
237237
JDK_VERSION: java11
238238
- task: detect-jdk15-update
239-
image: spring-boot-ci-image
239+
image: ci-image
240240
file: git-repo/ci/tasks/detect-jdk-updates.yml
241241
params:
242242
<<: *github-task-params
@@ -246,10 +246,10 @@ jobs:
246246
- get: git-repo
247247
- get: every-wednesday
248248
trigger: true
249-
- get: spring-boot-ci-image
249+
- get: ci-image
250250
- do:
251251
- task: detect-ubuntu-image-updates
252-
image: spring-boot-ci-image
252+
image: ci-image
253253
file: git-repo/ci/tasks/detect-ubuntu-image-updates.yml
254254
params:
255255
<<: *github-task-params
@@ -258,25 +258,25 @@ jobs:
258258
- get: git-repo
259259
- get: every-wednesday
260260
trigger: true
261-
- get: spring-boot-ci-image
261+
- get: ci-image
262262
- do:
263263
- task: detect-docker-updates
264-
image: spring-boot-ci-image
264+
image: ci-image
265265
file: git-repo/ci/tasks/detect-docker-updates.yml
266266
params:
267267
<<: *github-task-params
268268
- name: build
269269
serial: true
270270
public: true
271271
plan:
272-
- get: spring-boot-ci-image
272+
- get: ci-image
273273
- get: git-repo
274274
trigger: true
275275
- put: repo-status-build
276276
params: { state: "pending", commit: "git-repo" }
277277
- do:
278278
- task: build-project
279-
image: spring-boot-ci-image
279+
image: ci-image
280280
<<: *build-project-task-params
281281
on_failure:
282282
do:
@@ -304,7 +304,7 @@ jobs:
304304
serial: true
305305
public: true
306306
plan:
307-
- get: spring-boot-ci-image
307+
- get: ci-image
308308
- get: git-repo
309309
resource: git-pull-request
310310
trigger: true
@@ -315,7 +315,7 @@ jobs:
315315
path: git-repo
316316
status: pending
317317
- task: build-project
318-
image: spring-boot-ci-image
318+
image: ci-image
319319
file: git-repo/ci/tasks/build-pr-project.yml
320320
timeout: ((task-timeout))
321321
on_success:
@@ -332,14 +332,14 @@ jobs:
332332
serial: true
333333
public: true
334334
plan:
335-
- get: spring-boot-jdk11-ci-image
335+
- get: ci-image-jdk11
336336
- get: git-repo
337337
trigger: true
338338
- put: repo-status-jdk11-build
339339
params: { state: "pending", commit: "git-repo" }
340340
- do:
341341
- task: build-project
342-
image: spring-boot-jdk11-ci-image
342+
image: ci-image-jdk11
343343
<<: *build-project-task-params
344344
on_failure:
345345
do:
@@ -357,7 +357,7 @@ jobs:
357357
serial: true
358358
public: true
359359
plan:
360-
- get: spring-boot-jdk15-ci-image
360+
- get: ci-image-jdk15
361361
- get: git-repo
362362
trigger: true
363363
- put: repo-status-jdk15-build
@@ -406,11 +406,11 @@ jobs:
406406
- name: stage-milestone
407407
serial: true
408408
plan:
409-
- get: spring-boot-ci-image
409+
- get: ci-image
410410
- get: git-repo
411411
trigger: false
412412
- task: stage
413-
image: spring-boot-ci-image
413+
image: ci-image
414414
file: git-repo/ci/tasks/stage.yml
415415
params:
416416
RELEASE_TYPE: M
@@ -425,11 +425,11 @@ jobs:
425425
- name: stage-rc
426426
serial: true
427427
plan:
428-
- get: spring-boot-ci-image
428+
- get: ci-image
429429
- get: git-repo
430430
trigger: false
431431
- task: stage
432-
image: spring-boot-ci-image
432+
image: ci-image
433433
file: git-repo/ci/tasks/stage.yml
434434
params:
435435
RELEASE_TYPE: RC
@@ -444,11 +444,11 @@ jobs:
444444
- name: stage-release
445445
serial: true
446446
plan:
447-
- get: spring-boot-ci-image
447+
- get: ci-image
448448
- get: git-repo
449449
trigger: false
450450
- task: stage
451-
image: spring-boot-ci-image
451+
image: ci-image
452452
file: git-repo/ci/tasks/stage.yml
453453
params:
454454
RELEASE_TYPE: RELEASE
@@ -463,7 +463,7 @@ jobs:
463463
- name: promote-milestone
464464
serial: true
465465
plan:
466-
- get: spring-boot-ci-image
466+
- get: ci-image
467467
- get: git-repo
468468
trigger: false
469469
- get: artifactory-repo
@@ -473,7 +473,7 @@ jobs:
473473
download_artifacts: false
474474
save_build_info: true
475475
- task: promote
476-
image: spring-boot-ci-image
476+
image: ci-image
477477
file: git-repo/ci/tasks/promote.yml
478478
params:
479479
RELEASE_TYPE: M
@@ -492,7 +492,7 @@ jobs:
492492
- name: promote-rc
493493
serial: true
494494
plan:
495-
- get: spring-boot-ci-image
495+
- get: ci-image
496496
- get: git-repo
497497
trigger: false
498498
- get: artifactory-repo
@@ -502,7 +502,7 @@ jobs:
502502
download_artifacts: false
503503
save_build_info: true
504504
- task: promote
505-
image: spring-boot-ci-image
505+
image: ci-image
506506
file: git-repo/ci/tasks/promote.yml
507507
params:
508508
RELEASE_TYPE: RC
@@ -521,7 +521,7 @@ jobs:
521521
- name: promote-release
522522
serial: true
523523
plan:
524-
- get: spring-boot-ci-image
524+
- get: ci-image
525525
- get: git-repo
526526
trigger: false
527527
- get: artifactory-repo
@@ -531,7 +531,7 @@ jobs:
531531
download_artifacts: false
532532
save_build_info: true
533533
- task: promote
534-
image: spring-boot-ci-image
534+
image: ci-image
535535
file: git-repo/ci/tasks/promote.yml
536536
params:
537537
RELEASE_TYPE: RELEASE
@@ -540,7 +540,7 @@ jobs:
540540
- name: sync-to-maven-central
541541
serial: true
542542
plan:
543-
- get: spring-boot-ci-image
543+
- get: ci-image
544544
- get: git-repo
545545
- get: artifactory-repo
546546
trigger: true
@@ -549,7 +549,7 @@ jobs:
549549
download_artifacts: false
550550
save_build_info: true
551551
- task: sync-to-maven-central
552-
image: spring-boot-ci-image
552+
image: ci-image
553553
file: git-repo/ci/tasks/sync-to-maven-central.yml
554554
params:
555555
<<: *bintray-task-params
@@ -566,11 +566,11 @@ jobs:
566566
tag: generated-release-notes/tag
567567
body: generated-release-notes/release-notes.md
568568
groups:
569-
- name: "Build"
569+
- name: "builds"
570570
jobs: ["build", "jdk11-build", "jdk15-build", "windows-build"]
571-
- name: "Release"
571+
- name: "releases"
572572
jobs: ["stage-milestone", "stage-rc", "stage-release", "promote-milestone", "promote-rc", "promote-release", "sync-to-maven-central"]
573-
- name: "CI Images"
574-
jobs: ["build-spring-boot-ci-images", "detect-docker-updates", "detect-jdk-updates", "detect-ubuntu-image-updates"]
575-
- name: "Build Pull Requests"
573+
- name: "ci-images"
574+
jobs: ["build-ci-images", "detect-docker-updates", "detect-jdk-updates", "detect-ubuntu-image-updates"]
575+
- name: "pull-requests"
576576
jobs: ["build-pull-requests"]

0 commit comments

Comments
 (0)