Skip to content

Instantly share code, notes, and snippets.

@joebew42
Created April 8, 2016 13:51
Show Gist options
  • Save joebew42/bd2ae90c495921b1a0b587fd91c4ffc4 to your computer and use it in GitHub Desktop.
Save joebew42/bd2ae90c495921b1a0b587fd91c4ffc4 to your computer and use it in GitHub Desktop.
String basePath = 'project-x'
String checkoutAndBuild = 'checkout-and-build'
String integrationTest = 'integration-test'
String deployInTest = 'deploy-test'
String acceptanceTest = 'acceptance-test'
String deployInProduction = 'deploy-production'
folder(basePath) {
description 'Mega project'
}
job("$basePath/$checkoutAndBuild") {
deliveryPipelineConfiguration('Checkout', 'Unit tests')
scm {
git {
remote {
url('https://github.com/joebew42/dropwizard-sample-app.git')
}
createTag(false)
}
}
triggers {
cron('H/2 * * * *')
}
steps {
shell('echo ${BUILD_NUMBER}')
maven('-e clean test')
}
publishers {
downstreamParameterized {
trigger("$basePath/$integrationTest") {
condition('SUCCESS')
parameters {
predefinedProp('workspaceDirectory', '${WORKSPACE}')
}
}
}
}
}
mavenJob("$basePath/$integrationTest") {
deliveryPipelineConfiguration('Integration', 'Integration test')
parameters {
stringParam('workspaceDirectory', '', 'The workspace where source code is')
}
customWorkspace('$workspaceDirectory')
preBuildSteps {
shell('mvn package')
shell('java -jar target/sample-app-1.0-SNAPSHOT.jar db migrate src/test/resources/configuration-integration-test.yml')
}
goals('failsafe:integration-test')
publishers {
downstreamParameterized {
trigger("$basePath/$deployInTest") {
condition('SUCCESS')
parameters {
currentBuild()
}
}
}
}
}
job("$basePath/$deployInTest") {
deliveryPipelineConfiguration('Integration', 'Deploy in test')
parameters {
stringParam('workspaceDirectory', '', 'The workspace where source code is')
}
customWorkspace('$workspaceDirectory')
steps {
virtualenv {
name('venv')
command('pip install -r requirements.txt')
}
virtualenv {
name('venv')
command('fab -i ~/.ssh/deployer -u deployer -H 192.168.33.102 deploy')
}
}
publishers {
downstreamParameterized {
trigger("$basePath/$acceptanceTest") {
condition('SUCCESS')
parameters {
currentBuild()
}
}
}
}
}
job("$basePath/$acceptanceTest") {
deliveryPipelineConfiguration('Integration', 'Acceptance Tests')
parameters {
stringParam('workspaceDirectory', '', 'The workspace where source code is')
}
steps {
shell('curl http://192.168.33.102/notes')
}
publishers {
downstreamParameterized {
trigger("$basePath/$deployInProduction") {
condition('SUCCESS')
parameters {
currentBuild()
}
}
}
}
}
job("$basePath/$deployInProduction") {
deliveryPipelineConfiguration('Deploy', 'Deploy in production')
parameters {
stringParam('workspaceDirectory', '', 'The workspace where source code is')
}
customWorkspace('$workspaceDirectory')
steps {
virtualenv {
name('venv')
command('pip install -r requirements.txt')
}
virtualenv {
name('venv')
command('fab -i ~/.ssh/deployer -u deployer -H production.mydomain.com deploy')
}
}
}
deliveryPipelineView("$basePath") {
pipelineInstances(3)
showAggregatedPipeline()
updateInterval(60)
enableManualTriggers()
pipelines {
component('Initial', "$basePath/$checkoutAndBuild")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment