Skip to content

markpollack/build-scripts

 
 

Repository files navigation

Jenkins DSL

The repository contains job definitions using Jenkins Job Dsl plugin.

How to build it

./gradlew clean build

Warning
The ran test only checks if your scripts compile.

How to use it in Jenkins?

Check out the tutorial. Provide the link to this repository in your Jenkins installation.

The seed job for Spring Cloud should scan the jobs/springcloud/*.groovy files.

Remember to add src/main/groovy and src/main/resources for processing

Warning
Remember that views can be overridden that’s why the suggestion is to contain in one script all the logic needed to build a view for a single project (check out that spring_cloud_views.groovy is building all the spring-cloud views).

I want to add a new job

If your job is a standard Spring Cloud job that:

  • can be built via ./mvnw clean install and deployed with ./mvnw clean deploy

  • has docs under docs and those docs can be built via ./mvnw clean install -Pdocs

  • is using spring-cloud-build thanks to which boot version is parametrized

  • the job resides under the spring-cloud organization

you can just go to io.springframework.cloud.common.AllCloudJobs and add the name of the repo to ALL_JOBS list. That way the default CI jobs and views will be created for the master branch.

If your job needs to be building other branches except for master just add your proper entries to the JOBS_WITH_BRANCHES map in io.springframework.cloud.common.AllCloudJobs.

If you have some custom builds just add the entry to ALL_JOBS and CUSTOM_BUILD_JOBS. Next you should just create your own implementation (check io.springframework.cloud.ci.ConsulSpringCloudDeployBuildMaker for an example). Remember also to call it from the seed job (e.g. springcloud/spring_cloud.groovy:29 for Consul).

The views are automatically generated for you. They base on the name convention so check out springcloud/spring_cloud_views.groovy - it’s pretty straightforward.

I want to add a new compatibility job for a latest branch

There’s nothing that you have to do. If you’ve added the newest branch under JOBS_WITH_BRANCHES the project automatically takes the latest branch version and reuses it as point of entry for JOBS_WITH_BRANCHES_FOR_COMPATIBILITY_BUILD.

Working with Spring Cloud Stream App Starter

If you’re creating your own App Starter you can profit from this project to easily generate jobs for your apps.

The Gradle build comes with some useful tasks (run ./gradlew tasks to see the whole list). Let’s focus on the following ones

Jenkins tasks
-------------
startJenkins - Starts Jenkins via Docker Compose
stopJenkins - Stops Jenkins via Docker Compose

Spring Cloud Stream Tasks tasks
-------------
initializeAndStartScst - Removes unnecessary code for SCST and starts Jenkins

Assuming that you’ve just created a repo in your organization to host your custom App Staters. Let’s assume that the repo is present at http://foo.com/myrepo then it’s enough for you to do the following steps.

$ git clone https://github.com/spring-io/build-scripts
$ cd build-scripts
$ git remote remove origin
$ git remote add origin http://foo.com/myrepo
$ git remote add upstream https://github.com/spring-io/build-scripts
$ ./gradlew initializeAndStartScst -PrepoUrl=http://foo.com/myrepo
$ # alter the code in whatever way you need
$ git add .
$ git commit -m "Initialized App Starters for new repo"
$ git push origin master

Let’s see what exactly happened.

  1. We’re cloning the repo

  2. We’re entering its folder

  3. origin points to spring-io repo whereas we’d like it to point to the repo in your org so we need to remove the current origin

  4. Now we point the origin to the repo in your org

  5. We’re adding upstream to point to spring-io repo. In case you’d like to pull some changes

  6. By running this Gradle task we’re removing all the unnecessary Spring related code and we leave only the Starter App related one. For that job we’re replacing the current URL with the one that you provide via the property. Also what happens is that a Docker image is built and Jenkins itself is started. After a while you can go to localhost:8080 or if you have a Docker Machine to e.g. 192.168.99.100:8080 to see the Jenkins UI with a meta_seed job.

  7. Next it’s your time to play around with the provided code. Alter it to suit your needs.

  8. Since code has changed it’s time to add the files to staging

  9. Commit the changes

  10. Push the changed code to your repo

  11. Now if you go to Jenkins you can run the meta_seed job to generate seeds. A seed is a jobs that generates other jobs. After running the meta_seed job you should see a SCST app starter seed job generated. That’s the job that is responsible for creating concrete App Starter builds. If you run it some views and jobs should be created

Running Jenkins

Just run

docker-compose up -d

or

./gradlew startJenkins

and your jenkins with plugins present in plugins.txt will be ready at port 8080.

In order to download the latest plugins:

1) Open in your browser
http://$JENKINS_HOST/pluginManager/api/xml?depth=1&xpath=/*/*/shortName|/*/*/version&wrapper=plugins"
2) Store the XML to a file
3) Pipe the contents of the file to this command:
perl -pe 's/.*?<shortName>([\w-]+).*?<version>([^<]+)()(<\/\w+>)+/\1 \2\n/g'|sed 's/ /:/'
4) Store it as plugins.txt

Wait patiently for Jenkins to start - the job will be added automatically for you.

Important
We’re using the JMH Jenkins plugin which is not available anywhere in the marketplace. We’re trying to automate its installation but if it fails you can download the HPI from here and upload it yourself. The tag is in the forked repo over here

Configuring Jenkins for Spring Cloud

You have to provide the following values/plugin configuration for your Jenkins to make everything work:

Table 1. Table Things to do
Property Name/Plugin name Description

CF_USERNAME

The name of the Cloud Foundry user that access the Spring Cloud e2e space

CF_PASSWORD

The password for the Cloud Foundry user that access the Spring Cloud e2e space

CF_SPACE

The name of the space in Cloud Foundry that has e2e tests

Git plugin

You have to provide the username and email for the user that access artifactory

Global Slack Notifier

Provide team / integration token values to notify Slack

Cloud plugin

Provide values for Cloud so that jobs labeled for aws execution would work

Cloud plugin

The instances have to have proper values for JDK / JAVA_HOME

Artifactory.DEFAULT_ARTIFACTORY_NAME

The id of the Artifactory Repo is hardcoded in io.springframework.common.job.Artifactory.DEFAULT_ARTIFACTORY_NAME. Most likely after a new installation it will change and the code will need to get updated.

Maven Trait

The trait io.springframework.common.job.Maven contains references to Maven installations. You have to have your Jenkins Maven installations correspond to those entries.

Also it’s required to have Maven settings allowing you to push to artifactory.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Groovy 100.0%