PIPELINE STUDIO
Build visually.
Define precisely.
Design your workflow on the canvas or write it in ICE. Both views represent the same pipeline and stay synchronized as you work.
- ✓ Visual graph and textual definition
- ✓ Branches, parallel actions and dependencies
- ✓ Versionable, human-readable pipelines
ICE-1.0.0
@pipeline {
name: "build-deploy"
@actions {
checkout: action.GIT_CLONE(...)
verify: action.MAVEN_BUILD(...)
image: action.DOCKER_BUILD(...)
deploy: action.DINASYNC_DEPLOY(...)
}
@flow {
checkout -> verify
verify -> [image, report] -> deploy
}
}