Skip to content

Commit

Permalink
Merge branch 'master' of github.com:marcelbirkner/docker-ci-tool-stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Birkner committed Dec 15, 2015
2 parents d00df5f + 17e44aa commit 9dcc3b1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jenkins/seedjobs/3-conference-app-seed-job.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ job("conference-app-1-ci") {
clean()
}
}
wrappers {
colorizeOutput()
preBuildCleanup()
}
triggers {
scm('30/H * * * *')
githubPush()
Expand Down Expand Up @@ -51,6 +55,10 @@ job("conference-app-2-sonar") {
scm {
cloneWorkspace("conference-app-1-ci")
}
wrappers {
colorizeOutput()
preBuildCleanup()
}
steps {
maven {
goals('org.jacoco:jacoco-maven-plugin:0.7.4.201502262128:prepare-agent install -Psonar')
Expand Down Expand Up @@ -85,6 +93,10 @@ job("conference-app-monitoring-1-ci") {
clean()
}
}
wrappers {
colorizeOutput()
preBuildCleanup()
}
triggers {
scm('30/H * * * *')
githubPush()
Expand Down Expand Up @@ -122,6 +134,10 @@ job("conference-app-monitoring-2-sonar") {
scm {
cloneWorkspace("conference-app-monitoring-1-ci")
}
wrappers {
colorizeOutput()
preBuildCleanup()
}
steps {
maven {
goals('clean versions:set -DnewVersion=DEV-\${BUILD_NUMBER}')
Expand Down

0 comments on commit 9dcc3b1

Please sign in to comment.