forked from eficode-academy/roadshow-dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roadshowdsl.groovy
248 lines (235 loc) · 6.95 KB
/
roadshowdsl.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
import jenkins.*
import jenkins.model.*
/*
* Use this function to enable must have-defaults for your jobs
* LogRotator - make sure that you are cleaning up old logs
* Timeout - kill job in case if it takes to long
* This will indicate a coming problem for you and unclock
* pipeline in case of hanging jobs
* Timestamps - just nice to have have feature. Adds time stamps
* to console output
*
*/
def addDefaultParameters(def context, buildsToKeep=50, artifactsToKeep=10, timeoutVal=40) {
// Add timestamps and timeouts
context.wrappers {
timestamps()
timeout {
absolute(timeoutVal)
}
}
// Set log rotator
context.logRotator {
numToKeep(buildsToKeep)
artifactNumToKeep(artifactsToKeep)
}
}
/*
* Use this function to setup git clone to your repo
* repoURL - URL for repository to clone
* branch - branch name to checkout
*
*/
def addGitSCM(def context, repoURL, branchName='master', credentialsId='jenkins') {
context.scm {
git{
remote {
name('origin')
url(repoURL)
credentials(credentialsId)
}
branch(branchName)
// Make sure that repository is clean and we have
// no leftovers from the previous builds or unsuccessful checkouts
wipeOutWorkspace()
}
}
}
/*
* Create a view
*/
listView("${GITHUB_USER}") {
description('All jobs for GitHub user ${GITHUB_USER}')
jobs {
regex(/${GITHUB_USER}.+/)
}
columns {
name()
status()
weather()
lastDuration()
buildButton()
}
}
/*
* Verify that we can build war, run unit tests and measure code coverage
*/
job("${GITHUB_USER}.roadshow.generated.build") {
// Set default parameters
addDefaultParameters(delegate)
// Add Git SCM
addGitSCM(delegate, "[email protected]:${GITHUB_USER}/roadshow.git")
// Set trigger to poll SCM every minute
triggers {
scm('* * * * *')
}
// Actual build steps
steps {
// Build war file, run tests and measure coverage
shell('./gradlew clean war jenkinstest jacoco')
// Just for fun
shell("echo 'Hello, world!!'")
}
// Post build steps
publishers {
// Collect code coverage report
jacocoCodeCoverage()
// Collect unit test results
archiveJunit('build/test-results/*.xml')
// Collect compilation warnings
warnings(['Java Compiler (javac)'])
// Trigger downstream job
downstream("${GITHUB_USER}.roadshow.generated.staticanalysis",
'SUCCESS')
}
}
/*
* Run static analysis and post results
*/
job("${GITHUB_USER}.roadshow.generated.staticanalysis") {
// Set default parameters
addDefaultParameters(delegate)
// Add Git SCM
addGitSCM(delegate, "[email protected]:${GITHUB_USER}/roadshow.git")
// Actual build steps
steps {
// Run static code analysis
shell('./gradlew staticanalysis')
}
// Post-build steps
publishers {
// Collect check style report
checkstyle('build/reports/checkstyle/*.xml')
// Collect PMD report
pmd('build/reports/pmd/*.xml')
// Collect tasks statistics
tasks('**/*', '', 'FIXME', 'TODO', 'LOW', true)
}
}
/*
* BuilFlow driven pipeline
*/
buildFlowJob("${GITHUB_USER}.roadshow.buildflow") {
parameters {
stringParam('GITHUB_USER', "${GITHUB_USER}")
}
buildFlow('''
GITHUB_USER = params["GITHUB_USER"]
buildArtefact = build(GITHUB_USER + ".roadshow.buildflow.build")
parallel (
{ build(GITHUB_USER + ".roadshow.buildflow.test") },
{ build(GITHUB_USER + ".roadshow.buildflow.metrics") }
)
build(GITHUB_USER + ".roadshow.buildflow.promote", "BUILD_JOB_NAME": GITHUB_USER + ".roadshow.buildflow.build", "BUILD_JOB_NUMBER": buildArtefact.build.number)
''')
}
job("${GITHUB_USER}.roadshow.buildflow.build") {
// Set default parameters
addDefaultParameters(delegate)
// Add Git SCM
addGitSCM(delegate, "[email protected]:${GITHUB_USER}/roadshow.git")
// Actual build steps
steps {
// Build war file, run tests and measure coverage
shell('./gradlew war -DbuildNumber=${GITHUB_USER}-${BUILD_NUMBER}')
}
// Copy artifact permission for promotion job
configure {
it / 'properties' << 'hudson.plugins.copyartifact.CopyArtifactPermissionProperty' {
'projectNameList' {
'string' "${GITHUB_USER}.roadshow.buildflow.promote"
}
}
}
// Post build steps
publishers {
archiveArtifacts {
pattern('build/libs/RoadShow-*.war')
onlyIfSuccessful()
}
}
}
job("${GITHUB_USER}.roadshow.buildflow.test") {
// Set default parameters
addDefaultParameters(delegate)
// Add Git SCM
addGitSCM(delegate, "[email protected]:${GITHUB_USER}/roadshow.git")
// Actual build steps
steps {
// Build war file, run tests and measure coverage
shell('./gradlew test')
}
publishers {
// Collect unit test results
archiveJunit('build/test-results/*.xml')
}
}
job("${GITHUB_USER}.roadshow.buildflow.metrics") {
// Set default parameters
addDefaultParameters(delegate)
// Add Git SCM
addGitSCM(delegate, "[email protected]:${GITHUB_USER}/roadshow.git")
// Actual build steps
steps {
// Build war file, run tests and measure coverage
shell('./gradlew check')
}
// Post build steps
publishers {
// Collect check style report
checkstyle('build/reports/checkstyle/*.xml')
// Collect PMD report
pmd('build/reports/pmd/*.xml')
// Collect tasks statistics
tasks('**/*', '', 'FIXME', 'TODO', 'LOW', true)
// Collect code coverage report
jacocoCodeCoverage()
// Collect unit test results
archiveJunit('build/test-results/*.xml')
// Collect compilation warnings
warnings(['Java Compiler (javac)'])
}
}
job("${GITHUB_USER}.roadshow.buildflow.promote") {
// Set default parameters
addDefaultParameters(delegate)
parameters {
stringParam('BUILD_JOB_NAME', '')
stringParam('BUILD_JOB_NUMBER', '')
}
// Actual build steps
steps {
copyArtifacts('$BUILD_JOB_NAME') {
includePatterns('build/libs/*.war')
targetDirectory('.')
flatten()
buildSelector {
buildNumber('$BUILD_JOB_NUMBER')
latestSuccessful(true)
}
}
}
configure { project ->
project / buildWrappers << 'org.jfrog.hudson.generic.ArtifactoryGenericConfigurator' {
deployPattern('*.war')
details {
artifactoryName('local-server')
artifactoryUrl('http://artifactory:8080/artifactory')
deployReleaseRepository {
keyFromSelect('libs-snapshot-local')
dynamicMode(false)
}
}
}
}
}