Merge branch '2.0.x' into 2.1.x

pull/17391/head
Phillip Webb 6 years ago
commit bea0d08aac

@ -1,37 +1,18 @@
== Concourse pipeline == Concourse pipeline
The pipeline can be deployed using the following command: Ensure that you've have a spring-boot target logged in
[source] [source]
---- ----
$ fly -t spring set-pipeline -p spring-boot-2.1.x -c ci/pipeline.yml -l ci/parameters.yml $ fly -t spring-boot login -n spring-boot -c https://ci.spring-io
---- ----
NOTE: This assumes that you have credhub integration configured with the appropriate The pipeline can be deployed using the following command:
secrets.
=== Release
To release a milestone:
[source]
----
$ fly -t spring trigger-job -j spring-boot-2.1.x/stage-milestone
$ fly -t spring trigger-job -j spring-boot-2.1.x/promote-milestone
----
To release an RC:
[source] [source]
---- ----
$ fly -t spring trigger-job -j spring-boot-2.1.x/stage-rc $ fly -t spring-boot set-pipeline -p spring-boot-2.1.x -c ci/pipeline.yml -l ci/parameters.yml
$ fly -t spring trigger-job -j spring-boot-2.1.x/promote-rc
---- ----
To release a GA: NOTE: This assumes that you have credhub integration configured with the appropriate
secrets.
[source]
----
$ fly -t spring trigger-job -j spring-boot-2.1.x/stage-release
$ fly -t spring trigger-job -j spring-boot-2.1.x/promote-release
----

@ -32,7 +32,7 @@ resources:
type: pull-request type: pull-request
icon: source-pull icon: source-pull
source: source:
access_token: ((github-access-token)) access_token: ((github-ci-pull-request-token))
repo: ((github-repo-name)) repo: ((github-repo-name))
base: ((branch)) base: ((branch))
ignore_paths: ["ci/*"] ignore_paths: ["ci/*"]
@ -42,7 +42,7 @@ resources:
source: source:
owner: spring-projects owner: spring-projects
repository: spring-boot repository: spring-boot
access_token: ((github-release-notes-access-token)) access_token: ((github-ci-release-token))
pre_release: true pre_release: true
- name: github-release - name: github-release
type: github-release type: github-release
@ -50,7 +50,7 @@ resources:
source: source:
owner: spring-projects owner: spring-projects
repository: spring-boot repository: spring-boot
access_token: ((github-release-notes-access-token)) access_token: ((github-ci-release-token))
pre_release: false pre_release: false
- name: ci-images-git-repo - name: ci-images-git-repo
type: git type: git
@ -96,7 +96,7 @@ resources:
icon: eye-check-outline icon: eye-check-outline
source: source:
repository: ((github-repo-name)) repository: ((github-repo-name))
access_token: ((github-access-token)) access_token: ((github-ci-status-token))
branch: ((branch)) branch: ((branch))
context: build context: build
- name: repo-status-jdk11-build - name: repo-status-jdk11-build
@ -104,7 +104,7 @@ resources:
icon: eye-check-outline icon: eye-check-outline
source: source:
repository: ((github-repo-name)) repository: ((github-repo-name))
access_token: ((github-access-token)) access_token: ((github-ci-status-token))
branch: ((branch)) branch: ((branch))
context: jdk11-build context: jdk11-build
- name: repo-status-jdk12-build - name: repo-status-jdk12-build
@ -112,7 +112,7 @@ resources:
icon: eye-check-outline icon: eye-check-outline
source: source:
repository: ((github-repo-name)) repository: ((github-repo-name))
access_token: ((github-access-token)) access_token: ((github-ci-status-token))
branch: ((branch)) branch: ((branch))
context: jdk12-build context: jdk12-build
- name: slack-alert - name: slack-alert
@ -450,7 +450,7 @@ jobs:
params: params:
RELEASE_TYPE: M RELEASE_TYPE: M
GITHUB_USERNAME: ((github-username)) GITHUB_USERNAME: ((github-username))
GITHUB_TOKEN: ((github-release-notes-access-token)) GITHUB_TOKEN: ((github-ci-release-token))
- put: github-pre-release - put: github-pre-release
params: params:
name: generated-release-notes/tag name: generated-release-notes/tag
@ -481,7 +481,7 @@ jobs:
params: params:
RELEASE_TYPE: RC RELEASE_TYPE: RC
GITHUB_USERNAME: ((github-username)) GITHUB_USERNAME: ((github-username))
GITHUB_TOKEN: ((github-release-notes-access-token)) GITHUB_TOKEN: ((github-ci-release-token))
- put: github-pre-release - put: github-pre-release
params: params:
name: generated-release-notes/tag name: generated-release-notes/tag
@ -537,7 +537,7 @@ jobs:
params: params:
RELEASE_TYPE: RELEASE RELEASE_TYPE: RELEASE
GITHUB_USERNAME: ((github-username)) GITHUB_USERNAME: ((github-username))
GITHUB_TOKEN: ((github-release-notes-access-token)) GITHUB_TOKEN: ((github-ci-release-token))
- put: github-release - put: github-release
params: params:
name: generated-release-notes/tag name: generated-release-notes/tag

Loading…
Cancel
Save