You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spring-boot/ci
Phillip Webb 8d36e88fdf Upgrade to artifactory resource 0.0.2 SNAPSHOT
See gh-10521
7 years ago
..
images Add Concourse CI pipeline 7 years ago
scripts Add Concourse CI pipeline 7 years ago
tasks Add Concourse CI pipeline 7 years ago
README.adoc Add Concourse CI pipeline 7 years ago
parameters.yml Add Concourse CI pipeline 7 years ago
pipeline.yml Upgrade to artifactory resource 0.0.2 SNAPSHOT 7 years ago

README.adoc

== Concourse pipeline

To set the pipeline first create a file in this directory called `secrets.yml`:

[source,yaml]
.secrets.yml
----
docker-hub-username: <user>
docker-hub-password: <secret>
github-username: <user>
github-password: <secret>
artifactory-username: <user>
artifactory-password: <secret>
----

NOTE: The file should be ignored by git, make sure that you don't commit it!

Once the file has been created, the pipeline can be deployed:

[source]
----
$ fly -t spring set-pipeline -p spring-boot -c ci/pipeline.yml -l ci/parameters.yml -l ci/secrets.yml
----

=== Release

To release a milestone:

[source]
----
$ fly -t spring trigger-job -j spring-boot/stage-milestone
$ fly -t spring trigger-job -j spring-boot/promote-milestone
----

To release an RC:

[source]
----
$ fly -t spring trigger-job -j spring-boot/stage-rc
$ fly -t spring trigger-job -j spring-boot/promote-rc
----

To release a GA:

[source]
----
$ fly -t spring trigger-job -j spring-boot/stage-release
$ fly -t spring trigger-job -j spring-boot/promote-release
----