source: Jenkinsfile@ 7c0ef42

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 7c0ef42 was 7c0ef42, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

Jenkins changed the name of some internal directories, now we have to guess them again

  • Property mode set to 100644
File size: 10.2 KB
RevLine 
[a63ad80]1#!groovy
2
[29f4fe62]3//===========================================================================================================
[9beae23]4// Main loop of the compilation
[29f4fe62]5//===========================================================================================================
[9beae23]6node ('master'){
[56a9ce6]7
[9beae23]8 boolean bIsSandbox = env.BRANCH_NAME == "jenkins-sandbox"
9 def err = null
10 def log_needed = false
[0ef06b6]11
[734891d]12 stage_name = ''
13
[bd34bcf5]14 compiler = null
[026bb82]15 arch_name = ''
[bd34bcf5]16 architecture = ''
[95fdb0a]17
[bd34bcf5]18 do_alltests = false
19 do_benchmark = false
20 do_doc = false
21 do_publish = false
[3f09a70]22 do_sendemail = true
[56a9ce6]23
[0ef06b6]24 currentBuild.result = "SUCCESS"
25
[9beae23]26 try {
[95fdb0a]27 //Wrap build to add timestamp to command line
28 wrap([$class: 'TimestamperBuildWrapper']) {
[23a14d86]29
[95fdb0a]30 //Prevent the build from exceeding 60 minutes
31 timeout(60) {
32
[7223c671]33 notify_server()
[7aebc62]34
[0ef06b6]35 prepare_build()
[fde808df]36
[95fdb0a]37 checkout()
38
39 build()
40
41 test()
42
43 benchmark()
[7359098]44
[95fdb0a]45 clean()
[7359098]46
[95fdb0a]47 build_doc()
[9beae23]48
[95fdb0a]49 publish()
50
[7223c671]51 notify_server()
[9beae23]52 }
53 }
[738cf8f]54 }
55
[9beae23]56 //If an exception is caught we need to change the status and remember to
57 //attach the build log to the email
[738cf8f]58 catch (Exception caughtError) {
59 //rethrow error later
60 err = caughtError
61
[9beae23]62 //An error has occured, the build log is relevent
63 log_needed = true
64
65 //Store the result of the build log
[734891d]66 currentBuild.result = "${stage_name} FAILURE".trim()
[738cf8f]67 }
68
69 finally {
[9beae23]70 //Send email with final results if this is not a full build
[14ce3392]71 if( do_sendemail && !bIsSandbox ) {
[9beae23]72 echo 'Notifying users of result'
73 email(currentBuild.result, log_needed)
74 }
75
[734891d]76 echo 'Build Completed'
77
[738cf8f]78 /* Must re-throw exception to propagate error */
79 if (err) {
80 throw err
81 }
82 }
83}
84
[29f4fe62]85//===========================================================================================================
[95fdb0a]86// Helper classes/variables/routines
[29f4fe62]87//===========================================================================================================
[ab60d6d]88//Helper routine to collect information about the git history
89def collect_git_info() {
90
[805c167]91 checkout scm
92
[abc26975]93 //create the temporary output directory in case it doesn't already exist
[ab60d6d]94 def out_dir = pwd tmp: true
[abc26975]95 sh "mkdir -p ${out_dir}"
96
97 //parse git logs to find what changed
[ab60d6d]98 gitRefName = env.BRANCH_NAME
[7c0ef42]99 // dir("../${gitRefName}@script") {
100 sh "git reflog > ${out_dir}/GIT_COMMIT"
101 // }
[ab60d6d]102 git_reflog = readFile("${out_dir}/GIT_COMMIT")
103 gitRefOldValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][1]
104 gitRefNewValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][2]
105}
106
[0ef06b6]107def prepare_build() {
[95fdb0a]108 properties ([ \
109 [$class: 'ParametersDefinitionProperty', \
110 parameterDefinitions: [ \
111 [$class: 'ChoiceParameterDefinition', \
112 description: 'Which compiler to use', \
[0370b9b]113 name: 'pCompiler', \
[95fdb0a]114 choices: 'gcc-6\ngcc-5\ngcc-4.9\nclang', \
115 defaultValue: 'gcc-6', \
116 ], \
117 [$class: 'ChoiceParameterDefinition', \
118 description: 'The target architecture', \
[0370b9b]119 name: 'pArchitecture', \
[8fa3c7e6]120 choices: 'x64\nx86', \
121 defaultValue: 'x64', \
[95fdb0a]122 ], \
123 [$class: 'BooleanParameterDefinition', \
124 description: 'If false, only the quick test suite is ran', \
[8fa3c7e6]125 name: 'pRunAllTests', \
[95fdb0a]126 defaultValue: false, \
127 ], \
128 [$class: 'BooleanParameterDefinition', \
129 description: 'If true, jenkins also runs benchmarks', \
[8fa3c7e6]130 name: 'pRunBenchmark', \
[26a63f0]131 defaultValue: true, \
[95fdb0a]132 ], \
133 [$class: 'BooleanParameterDefinition', \
134 description: 'If true, jenkins also builds documentation', \
[3831b58]135 name: 'pBuildDocumentation', \
[26a63f0]136 defaultValue: true, \
[95fdb0a]137 ], \
138 [$class: 'BooleanParameterDefinition', \
139 description: 'If true, jenkins also publishes results', \
[0370b9b]140 name: 'pPublish', \
[3831b58]141 defaultValue: false, \
[fd6d74e]142 ], \
143 [$class: 'BooleanParameterDefinition', \
144 description: 'If true, jenkins will not send emails', \
[3831b58]145 name: 'pSilent', \
[95fdb0a]146 defaultValue: false, \
147 ], \
148 ],
[0ef06b6]149 ]])
150
[0370b9b]151 compiler = compiler_from_params( pCompiler )
[026bb82]152 arch_name = pArchitecture
153 architecture = architecture_from_params( arch_name )
[0ef06b6]154
[e6b862d]155 do_alltests = (pRunAllTests == 'true')
156 do_benchmark = (pRunBenchmark == 'true')
157 do_doc = (pBuildDocumentation == 'true')
158 do_publish = (pPublish == 'true')
159 do_sendemail = ! (pSilent == 'true')
[0ef06b6]160
[26a63f0]161 echo """Compiler : ${compiler.cc_name} (${compiler.cpp_cc}/${compiler.cfa_cc})
[026bb82]162Architecture : ${arch_name}
[3831b58]163Arc Flags : ${architecture}
[38eef0e]164Run All Tests : ${ pRunAllTests.toString() }
165Run Benchmark : ${ pRunBenchmark.toString() }
166Build Documentation : ${ pBuildDocumentation.toString() }
[26a63f0]167Publish : ${ pPublish.toString() }
[38eef0e]168Silent : ${ pSilent.toString() }
[6802a5f]169"""
170
[0ef06b6]171 collect_git_info()
[95fdb0a]172}
[0ef06b6]173
[734891d]174def build_stage(String name) {
175 stage_name = name
176 stage name
177}
178
[7223c671]179def notify_server() {
[ef9cc56]180 sh 'curl --silent -X POST http://plg2:8082/jenkins/notify > /dev/null || true'
[ed50f0ba]181 return
[95fdb0a]182}
183
184def make_doc() {
185 def err = null
186 try {
187 sh 'make clean > /dev/null'
188 sh 'make > /dev/null 2>&1'
189 }
190 catch (Exception caughtError) {
191 err = caughtError //rethrow error later
192 sh 'cat *.log'
193 }
194 finally {
195 if (err) throw err // Must re-throw exception to propagate error
[bd34bcf5]196 }
197}
198
199//Description of a compiler (Must be serializable since pipelines are persistent)
200class CC_Desc implements Serializable {
201 public String cc_name
202 public String cpp_cc
[6802a5f]203 public String cfa_cc
[bd34bcf5]204
[6802a5f]205 CC_Desc(String cc_name, String cpp_cc, String cfa_cc) {
[bd34bcf5]206 this.cc_name = cc_name
207 this.cpp_cc = cpp_cc
[6802a5f]208 this.cfa_cc = cfa_cc
[bd34bcf5]209 }
210}
211
212def compiler_from_params(cc) {
213 switch( cc ) {
214 case 'gcc-6':
215 return new CC_Desc('gcc-6', 'g++-6', 'gcc-6')
216 break
217 case 'gcc-5':
218 return new CC_Desc('gcc-5', 'g++-5', 'gcc-5')
219 break
220 case 'gcc-4.9':
221 return new CC_Desc('gcc-4.9', 'g++-4.9', 'gcc-4.9')
222 break
223 case 'clang':
[6802a5f]224 return new CC_Desc('clang', 'clang++', 'gcc-6')
[bd34bcf5]225 break
[1e6a463]226 default :
[201d77a]227 error "Unhandled compiler : ${cc}"
[bd34bcf5]228 }
229}
230
231def architecture_from_params( arch ) {
232 switch( arch ) {
[8fa3c7e6]233 case 'x64':
[5222605]234 return '--host=x86_64'
[bd34bcf5]235 break
[8fa3c7e6]236 case 'x86':
[5222605]237 return '--host=i386'
[bd34bcf5]238 break
[1e6a463]239 default :
[201d77a]240 error "Unhandled architecture : ${arch}"
[95fdb0a]241 }
[0ef06b6]242}
243
[29f4fe62]244//===========================================================================================================
[9beae23]245// Main compilation routines
[29f4fe62]246//===========================================================================================================
[9beae23]247//Compilation script is done here but environnement set-up and error handling is done in main loop
[95fdb0a]248def checkout() {
[734891d]249 build_stage'Checkout'
[9beae23]250 //checkout the source code and clean the repo
251 checkout scm
[77f347d]252
[9beae23]253 //Clean all temporary files to make sure no artifacts of the previous build remain
254 sh 'git clean -fdqx'
[40b1df9]255
[9beae23]256 //Reset the git repo so no local changes persist
257 sh 'git reset --hard'
[95fdb0a]258}
[29f4fe62]259
[95fdb0a]260def build() {
[734891d]261 build_stage'Build'
[95fdb0a]262
263 def install_dir = pwd tmp: true
264
[9beae23]265 //Configure the conpilation (Output is not relevant)
266 //Use the current directory as the installation target so nothing
267 //escapes the sandbox
268 //Also specify the compiler by hand
[6802a5f]269 sh "./configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --prefix=${install_dir} --enable-silent-rules --quiet"
[9e5f409]270
[9beae23]271 //Compile the project
272 sh 'make -j 8 --no-print-directory V=0 install'
[95fdb0a]273}
[24eecab]274
[95fdb0a]275def test() {
[734891d]276 build_stage'Test'
[9e5f409]277
[9beae23]278 //Run the tests from the tests directory
[95fdb0a]279 if ( do_alltests ) {
[9beae23]280 sh 'make -C src/tests all-tests debug=yes'
281 sh 'make -C src/tests all-tests debug=no'
282 }
283 else {
284 sh 'make -C src/tests'
285 }
[95fdb0a]286}
287
288def benchmark() {
[734891d]289 build_stage'Benchmark'
[29f4fe62]290
[6599085]291 if( !do_benchmark ) return
[ae28ee2]292
293 //Write the commit id to Benchmark
[026bb82]294 writeFile file: 'bench.csv', text:'data=' + gitRefNewValue + ',' + arch_name + ','
[ae28ee2]295
296 //Append bench results
[f9fa306]297 sh 'make -C src/benchmark --no-print-directory csv-data >> bench.csv'
[95fdb0a]298}
[ae28ee2]299
[95fdb0a]300def clean() {
[734891d]301 build_stage'Cleanup'
[d56c05d0]302
[9beae23]303 //do a maintainer-clean to make sure we need to remake from scratch
304 sh 'make maintainer-clean > /dev/null'
305}
[efd60d67]306
[95fdb0a]307def build_doc() {
[734891d]308 build_stage'Documentation'
[9beae23]309
[95fdb0a]310 if( !do_doc ) return
[9beae23]311
312 dir ('doc/user') {
313 make_doc()
314 }
315
316 dir ('doc/refrat') {
317 make_doc()
318 }
319}
320
[95fdb0a]321def publish() {
[734891d]322 build_stage'Publish'
[95fdb0a]323
324 if( !do_publish ) return
325
326 //Then publish the results
[3f22503]327 sh 'curl --silent --data @bench.csv http://plg2:8082/jenkins/publish > /dev/null || true'
[95fdb0a]328}
329
[29f4fe62]330//===========================================================================================================
331//Routine responsible of sending the email notification once the build is completed
332//===========================================================================================================
[a235d09]333//Standard build email notification
[19ad15b]334def email(String status, boolean log) {
[e8a22a7]335 //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
336 //Configurations for email format
337 def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1].toLowerCase()
338
[0a346e5]339 def gitLog = 'Error retrieving git logs'
340 def gitDiff = 'Error retrieving git diff'
[7b1a604]341
[0a346e5]342 try {
343
344 sh "git rev-list --format=short ${gitRefOldValue}...${gitRefNewValue} > GIT_LOG"
345 gitLog = readFile('GIT_LOG')
346
347 sh "git diff --stat ${gitRefNewValue} ${gitRefOldValue} > GIT_DIFF"
348 gitDiff = readFile('GIT_DIFF')
349 }
350 catch (Exception error) {}
[7b1a604]351
[992c26d]352 def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${status}] - branch ${env.BRANCH_NAME}"
[848fb00]353 def email_body = """This is an automated email from the Jenkins build machine. It was
354generated because of a git hooks/post-receive script following
355a ref change was pushed to the repository containing
356the project "UNNAMED PROJECT".
[e8a22a7]357
[848fb00]358The branch ${env.BRANCH_NAME} has been updated.
[a235d09]359 via ${gitRefOldValue} (commit)
360 from ${gitRefNewValue} (commit)
[7b1a604]361
362Check console output at ${env.BUILD_URL} to view the results.
363
364- Status --------------------------------------------------------------
365
366BUILD# ${env.BUILD_NUMBER} - ${status}
[e8a22a7]367
[7b1a604]368- Log -----------------------------------------------------------------
369${gitLog}
370-----------------------------------------------------------------------
371Summary of changes:
372${gitDiff}
373"""
[e8a22a7]374
[5783e94]375 def email_to = "pabuhr@uwaterloo.ca, rschlunt@uwaterloo.ca, a3moss@uwaterloo.ca, tdelisle@uwaterloo.ca, brice.dobry@huawei.com, ajbeach@edu.uwaterloo.ca"
[e8a22a7]376
377 //send email notification
[1e34653]378 emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
[e8a22a7]379}
Note: See TracBrowser for help on using the repository browser.