Skip to content

Commit e8d2494

Browse files
committed
Merge branch '2.1.x' into 2.2.x
2 parents 15f2186 + b0cc5fb commit e8d2494

File tree

5 files changed

+62
-61
lines changed

5 files changed

+62
-61
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.2.x"
99
milestone: "2.2.x"
1010
build-name: "spring-boot"
11-
pipeline-name: "spring-boot"
11+
pipeline-name: "spring-boot-2.2.x"
12+
ci-image-name: "spring-boot-ci-22x"
1213
concourse-url: "https://ci.spring.io"
1314
bintray-subject: "spring"
1415
bintray-repo: "jars"

ci/pipeline.yml

Lines changed: 60 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -130,24 +130,24 @@ resources:
130130
uri: ((github-repo))
131131
branch: ((branch))
132132
paths: ["ci/images/*"]
133-
- name: spring-boot-ci-image
133+
- name: ci-image
134134
type: docker-image
135135
icon: docker
136136
source:
137137
<<: *docker-resource-source
138-
repository: ((docker-hub-organization))/spring-boot-ci-image
139-
- name: spring-boot-jdk11-ci-image
138+
repository: ((docker-hub-organization))/((ci-image-name))
139+
- name: ci-image-jdk11
140140
type: docker-image
141141
icon: docker
142142
source:
143143
<<: *docker-resource-source
144-
repository: ((docker-hub-organization))/spring-boot-jdk11-ci-image
145-
- name: spring-boot-jdk15-ci-image
144+
repository: ((docker-hub-organization))/((ci-image-name))-jdk11
145+
- name: ci-image-jdk15
146146
type: docker-image
147147
icon: docker
148148
source:
149149
<<: *docker-resource-source
150-
repository: ((docker-hub-organization))/spring-boot-jdk15-ci-image
150+
repository: ((docker-hub-organization))/((ci-image-name))-jdk15
151151
- name: artifactory-repo
152152
type: artifactory-resource
153153
icon: package-variant
@@ -197,44 +197,44 @@ resources:
197197
icon: clock-outline
198198
source: { interval: "24h" }
199199
jobs:
200-
- name: build-spring-boot-ci-images
200+
- name: build-ci-images
201201
plan:
202202
- get: ci-images-git-repo
203203
trigger: true
204204
- in_parallel:
205-
- put: spring-boot-ci-image
205+
- put: ci-image
206206
params:
207207
build: ci-images-git-repo/ci/images
208-
dockerfile: ci-images-git-repo/ci/images/spring-boot-ci-image/Dockerfile
209-
- put: spring-boot-jdk11-ci-image
208+
dockerfile: ci-images-git-repo/ci/images/ci-image/Dockerfile
209+
- put: ci-image-jdk11
210210
params:
211211
build: ci-images-git-repo/ci/images
212-
dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk11-ci-image/Dockerfile
213-
- put: spring-boot-jdk15-ci-image
212+
dockerfile: ci-images-git-repo/ci/images/ci-image-jdk11/Dockerfile
213+
- put: ci-image-jdk15
214214
params:
215215
build: ci-images-git-repo/ci/images
216-
dockerfile: ci-images-git-repo/ci/images/spring-boot-jdk15-ci-image/Dockerfile
216+
dockerfile: ci-images-git-repo/ci/images/ci-image-jdk15/Dockerfile
217217
- name: detect-jdk-updates
218218
plan:
219219
- get: git-repo
220220
- get: every-wednesday
221221
trigger: true
222-
- get: spring-boot-ci-image
222+
- get: ci-image
223223
- in_parallel:
224224
- task: detect-jdk8-update
225-
image: spring-boot-ci-image
225+
image: ci-image
226226
file: git-repo/ci/tasks/detect-jdk-updates.yml
227227
params:
228228
<<: *github-task-params
229229
JDK_VERSION: java8
230230
- task: detect-jdk11-update
231-
image: spring-boot-ci-image
231+
image: ci-image
232232
file: git-repo/ci/tasks/detect-jdk-updates.yml
233233
params:
234234
<<: *github-task-params
235235
JDK_VERSION: java11
236236
- task: detect-jdk15-update
237-
image: spring-boot-ci-image
237+
image: ci-image
238238
file: git-repo/ci/tasks/detect-jdk-updates.yml
239239
params:
240240
<<: *github-task-params
@@ -244,10 +244,10 @@ jobs:
244244
- get: git-repo
245245
- get: every-wednesday
246246
trigger: true
247-
- get: spring-boot-ci-image
247+
- get: ci-image
248248
- do:
249249
- task: detect-ubuntu-image-updates
250-
image: spring-boot-ci-image
250+
image: ci-image
251251
file: git-repo/ci/tasks/detect-ubuntu-image-updates.yml
252252
params:
253253
<<: *github-task-params
@@ -256,41 +256,41 @@ jobs:
256256
- get: git-repo
257257
- get: every-wednesday
258258
trigger: true
259-
- get: spring-boot-ci-image
259+
- get: ci-image
260260
- do:
261261
- task: detect-docker-updates
262-
image: spring-boot-ci-image
262+
image: ci-image
263263
file: git-repo/ci/tasks/detect-docker-updates.yml
264264
params:
265265
<<: *github-task-params
266266
- name: build
267267
serial: true
268268
public: true
269269
plan:
270-
- get: spring-boot-ci-image
270+
- get: ci-image
271271
- get: git-repo
272272
trigger: true
273273
- put: repo-status-build
274274
params: { state: "pending", commit: "git-repo" }
275275
- do:
276276
- task: build-project
277-
image: spring-boot-ci-image
277+
image: ci-image
278278
<<: *build-project-task-params
279279
- in_parallel:
280280
- task: build-smoke-tests
281-
image: spring-boot-ci-image
281+
image: ci-image
282282
file: git-repo/ci/tasks/build-smoke-tests.yml
283283
timeout: ((task-timeout))
284284
params:
285285
<<: *gradle-enterprise-task-params
286286
- task: build-integration-tests
287-
image: spring-boot-ci-image
287+
image: ci-image
288288
file: git-repo/ci/tasks/build-integration-tests.yml
289289
timeout: ((task-timeout))
290290
params:
291291
<<: *gradle-enterprise-task-params
292292
- task: build-deployment-tests
293-
image: spring-boot-ci-image
293+
image: ci-image
294294
file: git-repo/ci/tasks/build-deployment-tests.yml
295295
timeout: ((task-timeout))
296296
params:
@@ -319,7 +319,7 @@ jobs:
319319
serial: true
320320
public: true
321321
plan:
322-
- get: spring-boot-ci-image
322+
- get: ci-image
323323
- get: git-repo
324324
resource: git-pull-request
325325
trigger: true
@@ -330,20 +330,20 @@ jobs:
330330
path: git-repo
331331
status: pending
332332
- task: build-project
333-
image: spring-boot-ci-image
333+
image: ci-image
334334
file: git-repo/ci/tasks/build-pr-project.yml
335335
timeout: ((task-timeout))
336336
- in_parallel:
337337
- task: build-smoke-tests
338-
image: spring-boot-ci-image
338+
image: ci-image
339339
file: git-repo/ci/tasks/build-smoke-tests.yml
340340
timeout: ((task-timeout))
341341
- task: build-integration-tests
342-
image: spring-boot-ci-image
342+
image: ci-image
343343
file: git-repo/ci/tasks/build-integration-tests.yml
344344
timeout: ((task-timeout))
345345
- task: build-deployment-tests
346-
image: spring-boot-ci-image
346+
image: ci-image
347347
file: git-repo/ci/tasks/build-deployment-tests.yml
348348
timeout: ((task-timeout))
349349
on_success:
@@ -360,30 +360,30 @@ jobs:
360360
serial: true
361361
public: true
362362
plan:
363-
- get: spring-boot-jdk11-ci-image
363+
- get: ci-image-jdk11
364364
- get: git-repo
365365
trigger: true
366366
- put: repo-status-jdk11-build
367367
params: { state: "pending", commit: "git-repo" }
368368
- do:
369369
- task: build-project
370-
image: spring-boot-jdk11-ci-image
370+
image: ci-image-jdk11
371371
<<: *build-project-task-params
372372
- in_parallel:
373373
- task: build-smoke-tests
374-
image: spring-boot-jdk11-ci-image
374+
image: ci-image-jdk11
375375
file: git-repo/ci/tasks/build-smoke-tests.yml
376376
timeout: ((task-timeout))
377377
params:
378378
<<: *gradle-enterprise-task-params
379379
- task: build-integration-tests
380-
image: spring-boot-jdk11-ci-image
380+
image: ci-image-jdk11
381381
file: git-repo/ci/tasks/build-integration-tests.yml
382382
timeout: ((task-timeout))
383383
params:
384384
<<: *gradle-enterprise-task-params
385385
- task: build-deployment-tests
386-
image: spring-boot-jdk11-ci-image
386+
image: ci-image-jdk11
387387
file: git-repo/ci/tasks/build-deployment-tests.yml
388388
timeout: ((task-timeout))
389389
params:
@@ -404,31 +404,31 @@ jobs:
404404
serial: true
405405
public: true
406406
plan:
407-
- get: spring-boot-jdk15-ci-image
407+
- get: ci-image-jdk15
408408
- get: git-repo
409409
trigger: true
410410
- put: repo-status-jdk15-build
411411
params: { state: "pending", commit: "git-repo" }
412412
- do:
413413
- task: build-project
414-
image: spring-boot-jdk15-ci-image
414+
image: ci-image-jdk15
415415
<<: *build-project-task-params
416416
- in_parallel:
417417
- task: build-smoke-tests
418418
timeout: ((task-timeout))
419-
image: spring-boot-jdk15-ci-image
419+
image: ci-image-jdk15
420420
file: git-repo/ci/tasks/build-smoke-tests.yml
421421
params:
422422
<<: *gradle-enterprise-task-params
423423
- task: build-integration-tests
424424
timeout: ((task-timeout))
425-
image: spring-boot-jdk15-ci-image
425+
image: ci-image-jdk15
426426
file: git-repo/ci/tasks/build-integration-tests.yml
427427
params:
428428
<<: *gradle-enterprise-task-params
429429
- task: build-deployment-tests
430430
timeout: ((task-timeout))
431-
image: spring-boot-jdk15-ci-image
431+
image: ci-image-jdk15
432432
file: git-repo/ci/tasks/build-deployment-tests.yml
433433
params:
434434
<<: *gradle-enterprise-task-params
@@ -471,11 +471,11 @@ jobs:
471471
- name: stage-milestone
472472
serial: true
473473
plan:
474-
- get: spring-boot-ci-image
474+
- get: ci-image
475475
- get: git-repo
476476
trigger: false
477477
- task: stage
478-
image: spring-boot-ci-image
478+
image: ci-image
479479
file: git-repo/ci/tasks/stage.yml
480480
params:
481481
RELEASE_TYPE: M
@@ -492,11 +492,11 @@ jobs:
492492
- name: stage-rc
493493
serial: true
494494
plan:
495-
- get: spring-boot-ci-image
495+
- get: ci-image
496496
- get: git-repo
497497
trigger: false
498498
- task: stage
499-
image: spring-boot-ci-image
499+
image: ci-image
500500
file: git-repo/ci/tasks/stage.yml
501501
params:
502502
RELEASE_TYPE: RC
@@ -513,11 +513,11 @@ jobs:
513513
- name: stage-release
514514
serial: true
515515
plan:
516-
- get: spring-boot-ci-image
516+
- get: ci-image
517517
- get: git-repo
518518
trigger: false
519519
- task: stage
520-
image: spring-boot-ci-image
520+
image: ci-image
521521
file: git-repo/ci/tasks/stage.yml
522522
params:
523523
RELEASE_TYPE: RELEASE
@@ -534,7 +534,7 @@ jobs:
534534
- name: promote-milestone
535535
serial: true
536536
plan:
537-
- get: spring-boot-ci-image
537+
- get: ci-image
538538
- get: git-repo
539539
trigger: false
540540
- get: artifactory-repo
@@ -544,7 +544,7 @@ jobs:
544544
download_artifacts: false
545545
save_build_info: true
546546
- task: promote
547-
image: spring-boot-ci-image
547+
image: ci-image
548548
file: git-repo/ci/tasks/promote.yml
549549
params:
550550
RELEASE_TYPE: M
@@ -563,7 +563,7 @@ jobs:
563563
- name: promote-rc
564564
serial: true
565565
plan:
566-
- get: spring-boot-ci-image
566+
- get: ci-image
567567
- get: git-repo
568568
trigger: false
569569
- get: artifactory-repo
@@ -573,7 +573,7 @@ jobs:
573573
download_artifacts: false
574574
save_build_info: true
575575
- task: promote
576-
image: spring-boot-ci-image
576+
image: ci-image
577577
file: git-repo/ci/tasks/promote.yml
578578
params:
579579
RELEASE_TYPE: RC
@@ -592,7 +592,7 @@ jobs:
592592
- name: promote-release
593593
serial: true
594594
plan:
595-
- get: spring-boot-ci-image
595+
- get: ci-image
596596
- get: git-repo
597597
trigger: false
598598
- get: artifactory-repo
@@ -602,7 +602,7 @@ jobs:
602602
download_artifacts: false
603603
save_build_info: true
604604
- task: promote
605-
image: spring-boot-ci-image
605+
image: ci-image
606606
file: git-repo/ci/tasks/promote.yml
607607
params:
608608
RELEASE_TYPE: RELEASE
@@ -611,7 +611,7 @@ jobs:
611611
- name: sync-to-maven-central
612612
serial: true
613613
plan:
614-
- get: spring-boot-ci-image
614+
- get: ci-image
615615
- get: git-repo
616616
- get: artifactory-repo
617617
trigger: true
@@ -620,7 +620,7 @@ jobs:
620620
download_artifacts: false
621621
save_build_info: true
622622
- task: sync-to-maven-central
623-
image: spring-boot-ci-image
623+
image: ci-image
624624
file: git-repo/ci/tasks/sync-to-maven-central.yml
625625
params:
626626
<<: *bintray-task-params
@@ -637,11 +637,11 @@ jobs:
637637
tag: generated-release-notes/tag
638638
body: generated-release-notes/release-notes.md
639639
groups:
640-
- name: "Build"
640+
- name: "builds"
641641
jobs: ["build", "jdk11-build", "jdk15-build", "windows-build"]
642-
- name: "Release"
642+
- name: "releases"
643643
jobs: ["stage-milestone", "stage-rc", "stage-release", "promote-milestone", "promote-rc", "promote-release", "sync-to-maven-central"]
644-
- name: "CI Images"
645-
jobs: ["build-spring-boot-ci-images", "detect-docker-updates", "detect-jdk-updates", "detect-ubuntu-image-updates"]
646-
- name: "Build Pull Requests"
644+
- name: "ci-images"
645+
jobs: ["build-ci-images", "detect-docker-updates", "detect-jdk-updates", "detect-ubuntu-image-updates"]
646+
- name: "pull-requests"
647647
jobs: ["build-pull-requests"]

0 commit comments

Comments
 (0)