This commit adds the Concourse build infrastructure under the "ci/" folder. It contains: * "images/", the definitions of container images used in the pipeline * "pipeline.yml" the build pipeline definition * "parameters.yml" the parameters for the pipeline definition * "tasks/" the tasks used by the build pipeline * "scripts/" scripts used by pipeline tasks This first iteration of the Concourse pipeline builds CI container images for JDK8, JDK11, JDK14 and JDK15. These images are used for building and publishing the master branch of Spring Framework using JDK8. Other JDK variants are sanity checks and don't actually publish the produced artifacts. See gh-22490 |
||
|---|---|---|
| .. | ||
| spring-framework-ci-image | ||
| spring-framework-jdk11-ci-image | ||
| spring-framework-jdk14-ci-image | ||
| spring-framework-jdk15-ci-image | ||
| README.adoc | ||
| get-jdk-url.sh | ||
| setup.sh | ||
README.adoc
== CI Images These images are used by CI to run the actual builds. To build the image locally run the following from this directory: ---- $ docker build --no-cache -f <image-folder>/Dockerfile . ---- For example ---- $ docker build --no-cache -f spring-framework-ci-image/Dockerfile . ---- To test run: ---- $ docker run -it --entrypoint /bin/bash <SHA> ----