Building continuous delivery pipelines and similarly complex tasks in Jenkins using freestyle projects and existing plugins is very awkward. You need to mix Parameterized Trigger, Copy Artifact, Promoted Builds, Conditional Build Step, and more just to express what should be a simple script. This project attempts to make it possible to directly write that script, what people often call a workflow (sometimes abbreviated flow), while integrating with Jenkins features like slaves and publishers.
JUC San Francisco (Oct 2014): video
JUC Boston (Jun 2014): slides and video
Specific status of implementation below.
Your whole workflow is a single Groovy script using an embedded DSL, possibly quite short and legible; there is no need to jump between multiple job configuration screens to see what is going on. Conditions, loops, variables, parallel tasks, and so on are defined using regular language constructs. At any point you can insert a shell script to do “real work” (compilation, etc.).
Standard DSL functions let you run external processes, grab slave nodes, allocate workspaces, build “legacy” (freestyle) jobs, and so on.
See here for information on reusing build steps from freestyle projects.
If Jenkins is restarted (intentionally, or because of a crash) while your workflow is running, when it comes back up, execution is resumed where it left off. This applies to external processes (shell scripts) so long as the slave can be reattached, and losing the slave connection temporarily is not fatal either.
Flows can pause in the middle and wait for a human to approve something, or enter some information. Executors are not consumed while the flow is waiting.
See here for details on using version control from a workflow.
By default, flow builds can run concurrently.
The stage
command lets you mark certain sections of a build as being constrained by limited concurrency (or, later, unconstrained).
Newer builds are always given priority when entering such a throttled stage; older builds will simply exit early if they are preëmpted.
A concurrency of one is useful to let you lock a singleton resource, such as deployment to a single target server. Only one build will deploy at a given time: the newest which passed all previous stages.
A finite concurrency ≥1 can also be used to prevent slow build stages such as integration tests from overloading the system. Every SCM push can still trigger a separate build of a quicker earlier stage as compilation and unit tests. Yet each build runs linearly and can even retain a single workspace, avoiding the need to identify and copy artifacts between builds. (Even if you dispose of a workspace from an earlier stage, you can retain information about it using simple local variables.)
node('linux') { // grab a slave and allocate a workspace
git url: '…' // clone/checkout
sh 'mvn verify' // run your build
}
A more complete example still in a single workspace:
node('windows_jnlp') {
svn url: 'https://…/trunk/…'
bat(/
echo off
set JAVA_HOME=c:\Program Files\Java\jdk1.7.0_60
c:\Program Files\Maven\bin\mvn clean install
/)
step([$class: 'ArtifactArchiver', artifacts: '**/target/*-SNAPSHOT*', fingerprint: true])
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/*.xml'])
}
If you do not want to build from sources, early releases (see the changelog for details on which) are available on the Jenkins experimental update center. You need to be running a sufficiently recent Jenkins release, currently an LTS in the 1.580.x line, or a newer weekly release.
For OSS Jenkins users, follow these instructions and install Workflow: Aggregator (its dependencies will be pulled in automatically). You will need to restart Jenkins to complete installation.
Jenkins Enterprise by CloudBees users can click Enable access under Access to experimental plugin releases in the main Jenkins configuration screen, and then install CloudBees Workflow: Aggregator. Again dependencies will be pulled in automatically, including all the OSS plugins.
See the demo overview using Docker if you want to try a complete setup quickly.
If you want to try running recent development changes, rather than released binaries, you have two options. You can run directly from the source tree; from the root of the repository:
mvn -DskipTests clean install && mvn -f aggregator hpi:run
Then visit http://localhost:8080/jenkins/ to play with the plugins.
(If your IDE supports compile-on-save mode this is especially convenient since each hpi:run
will pick up compiled changes from member plugins without needing to run to package
phase.)
You can also run the Docker demo with snapshot binaries:
make -C demo run-snapshot
The snapshot Docker demo is mainly useful for verifying the effect of ongoing changes on future demo binary releases. You get the cd
sample job set up, but your environment is thrown away if you kill the Docker container (for example with Ctrl-C). When using hpi:run
the same aggregator/work/
home directory is reused so long as you do not explicitly delete it.
- Changelog
- Source repository
- JIRA
- Trello board tracking active and proposed tasks.
- CI job with validated merge support.
- Video tutorial on implementing a Step API
- Video walkthrough of code
While the implementation is divided into a number of plugins, for ease of prototyping they are all kept in one repository using snapshot dependencies.
step-api
defines a generic build step interface (not specific to flows) that many plugins could in the future depend on.basic-steps
add some generic step implementations.api
defines the essential aspects of flows and their executions. In particular, the engine running a flow is extensible and so could in the future support visual orchestration languages.support
adds general implementations of some internals needed by flows, such as storing state.job
provides the actual job type and top-level UI for defining and running flows.durable-task-step
uses thedurable-task
plugin to define a shell script step that can survive restarts.scm-step
adds SCM-related steps. There is more documentation there.cps
is the flow engine implementation based on the Groovy language, and supporting long-running flows using a continuation passing style transformation of the script.cps-global-lib
adds a Git-backed repository for Groovy libraries available to scripts.stm
is a simple engine implementation using a state transition machine, less intended for end users than as a reference for how engines can work. Currently only partly implemented.aggregator
is a placeholder plugin allowing you tomvn hpi:run
and see everything working together, as well as holding integration tests.