source: Jenkinsfile@ c536f9d

Last change on this file since c536f9d was 8e5dc27, checked in by Peter A. Buhr <pabuhr@…>, 5 months ago

5th attempt at build on Ubuntu 24.04

  • Property mode set to 100644
File size: 13.3 KB
RevLine 
[a63ad80]1#!groovy
2
[7a230fd]3import groovy.transform.Field
4
[29f4fe62]5//===========================================================================================================
[9beae23]6// Main loop of the compilation
[29f4fe62]7//===========================================================================================================
[56a9ce6]8
[d3b95f1]9// Globals
[e018546]10BuildDir = null
11SrcDir = null
[d3b95f1]12Settings = null
13Tools = null
[4f9e706]14
[d3b95f1]15// Local variables
16def err = null
17def log_needed = false
[5b8413b4]18
[d3b95f1]19currentBuild.result = "SUCCESS"
[4f9e706]20
[d3b95f1]21try {
[47138ee]22 node {
23 //Wrap build to add timestamp to command line
24 wrap([$class: 'TimestamperBuildWrapper']) {
[85142648]25 Settings = prepare_build()
[d3b95f1]26 }
[47138ee]27 }
[952ee7a]28
[47138ee]29 node(Settings.Architecture.node) {
30 //Wrap build to add timestamp to command line
31 wrap([$class: 'TimestamperBuildWrapper']) {
[d3b95f1]32 BuildDir = pwd tmp: true
33 SrcDir = pwd tmp: false
34 currentBuild.description = "${currentBuild.description} on ${env.NODE_NAME}"
[7aebc62]35
[d3b95f1]36 Tools.Clean()
[fde808df]37
[d3b95f1]38 Tools.Checkout()
[95fdb0a]39
[d3b95f1]40 build()
[95fdb0a]41
[d3b95f1]42 test()
[95fdb0a]43
[d3b95f1]44 benchmark()
[7359098]45
[d3b95f1]46 build_doc()
[9beae23]47
[d3b95f1]48 publish()
[9beae23]49 }
[738cf8f]50 }
[d3b95f1]51}
[738cf8f]52
[d3b95f1]53//If an exception is caught we need to change the status and remember to
54//attach the build log to the email
55catch (Exception caughtError) {
56 // Store the result of the build log
57 currentBuild.result = "FAILURE"
[9dd31e7]58
[d3b95f1]59 // An error has occured, the build log is relevent
60 log_needed = true
[9beae23]61
[d3b95f1]62 // rethrow error later
63 err = caughtError
[852ae0ea]64
[d3b95f1]65 // print the error so it shows in the log
66 echo err.toString()
67}
[738cf8f]68
[d3b95f1]69finally {
70 //Send email with final results if this is not a full build
71 email(log_needed)
[9beae23]72
[d3b95f1]73 echo 'Build Completed'
[734891d]74
[d3b95f1]75 /* Must re-throw exception to propagate error */
76 if (err) {
77 throw err
[738cf8f]78 }
79}
[29f4fe62]80//===========================================================================================================
[9beae23]81// Main compilation routines
[29f4fe62]82//===========================================================================================================
[95fdb0a]83def build() {
[e507c11]84 debug = true
85 release = Settings.RunAllTests || Settings.RunBenchmark
[91aa5ab]86 Tools.BuildStage('Build : configure', true) {
[dcf1979]87 // Configure must be run inside the tree
88 dir (SrcDir) {
89 // Generate the necessary build files
90 sh './autogen.sh'
91 }
92
[50f2cfc]93 // Build outside of the src tree to ease cleaning
[5b8413b4]94 dir (BuildDir) {
[8e58264]95 //Configure the compilation (Output is not relevant)
[50f2cfc]96 //Use the current directory as the installation target so nothing escapes the sandbox
97 //Also specify the compiler by hand
[3fc5f010]98 targets=""
[d4510ea]99 if( Settings.RunAllTests || Settings.RunBenchmark ) {
[6bde81d]100 targets="--with-target-hosts='host:debug,host:nodebug'"
[3fc5f010]101 } else {
[6bde81d]102 targets="--with-target-hosts='host:debug'"
[3fc5f010]103 }
104
[6b00c53]105 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} --quiet --prefix=${BuildDir}"
[f253e4a]106
107 // Configure libcfa
[0b4ddb71]108 sh 'make -j $(nproc) --no-print-directory configure-libcfa'
[e507c11]109 }
110 }
111
[91aa5ab]112 Tools.BuildStage('Build : cfa-cpp', true) {
[e507c11]113 // Build outside of the src tree to ease cleaning
114 dir (BuildDir) {
115 // Build driver
[0b4ddb71]116 sh 'make -j $(nproc) --no-print-directory -C driver'
[e507c11]117
118 // Build translator
[0b4ddb71]119 sh 'make -j $(nproc) --no-print-directory -C src'
[e507c11]120 }
121 }
[1752d0e]122
[91aa5ab]123 Tools.BuildStage('Build : libcfa(debug)', debug) {
[e507c11]124 // Build outside of the src tree to ease cleaning
125 dir (BuildDir) {
[14d5461]126 sh "make -j \$(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-debug"
[e507c11]127 }
128 }
129
[91aa5ab]130 Tools.BuildStage('Build : libcfa(nodebug)', release) {
[e507c11]131 // Build outside of the src tree to ease cleaning
132 dir (BuildDir) {
[14d5461]133 sh "make -j \$(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-nodebug"
[50f2cfc]134 }
[620dd2b]135 }
[aa96fba]136
[91aa5ab]137 Tools.BuildStage('Build : install', true) {
[aa96fba]138 // Build outside of the src tree to ease cleaning
139 dir (BuildDir) {
[14d5461]140 sh 'make -j $(nproc) --no-print-directory install'
[aa96fba]141 }
142 }
[95fdb0a]143}
[24eecab]144
[95fdb0a]145def test() {
[4c1b9ea8]146 try {
[1baf6ed]147 // Print potential limits before testing
148 // in case jenkins messes with them
[a33dcd5]149 sh 'free -h'
[1baf6ed]150 sh 'ulimit -a'
151
[597e395]152 jopt = '-j $(nproc)'
153
[9a90092]154 Tools.BuildStage('Test: Debug', true) {
[4c1b9ea8]155 dir (BuildDir) {
[3e93c00]156 //Run the tests from the tests directory
[5007618]157 sh """make ${jopt} --no-print-directory -C tests timeout=600 global-timeout=14400 tests debug=yes archive-errors=${BuildDir}/tests/crashes/full-debug"""
[3e93c00]158 }
[4c1b9ea8]159 }
160
[597e395]161 Tools.BuildStage('Test: Release', Settings.RunAllTests) {
[4c1b9ea8]162 dir (BuildDir) {
[597e395]163 //Run the tests from the tests directory
[5007618]164 sh """make ${jopt} --no-print-directory -C tests timeout=600 global-timeout=14400 tests debug=no archive-errors=${BuildDir}/tests/crashes/full-nodebug"""
[143e6f3]165 }
[9beae23]166 }
[620dd2b]167 }
[4c1b9ea8]168 catch (Exception err) {
169 echo "Archiving core dumps"
[c95fdc9]170 dir (BuildDir) {
[cc9ec56]171 def exists = fileExists 'tests/crashes'
172 if( exists ) {
[cece53c]173 sh """${SrcDir}/tools/jenkins/archive-gen.sh"""
174 archiveArtifacts artifacts: "tests/crashes/**/*,lib/**/lib*.so*,setup.sh", fingerprint: true
175 }
[c95fdc9]176 }
[4c1b9ea8]177 throw err
178 }
[95fdb0a]179}
180
181def benchmark() {
[91aa5ab]182 Tools.BuildStage('Benchmark', Settings.RunBenchmark) {
[5b8413b4]183 dir (BuildDir) {
[0dc3ac3]184 //Append bench results
[c6f1f3e]185 sh "make --no-print-directory -C benchmark jenkins arch=${Settings.Architecture.name}"
[0dc3ac3]186 }
[620dd2b]187 }
[9beae23]188}
[efd60d67]189
[95fdb0a]190def build_doc() {
[91aa5ab]191 Tools.BuildStage('Documentation', Settings.BuildDocumentation) {
[9beae23]192 dir ('doc/user') {
193 make_doc()
194 }
195
196 dir ('doc/refrat') {
197 make_doc()
198 }
[620dd2b]199 }
[9beae23]200}
201
[95fdb0a]202def publish() {
[91aa5ab]203 Tools.BuildStage('Publish', true) {
[95fdb0a]204
[1b3eef8]205 if( Settings.Publish && !Settings.RunBenchmark ) { echo 'No results to publish!!!' }
[620dd2b]206 }
[95fdb0a]207}
208
[29f4fe62]209//===========================================================================================================
210//Routine responsible of sending the email notification once the build is completed
211//===========================================================================================================
[a336d46]212//Standard build email notification
[13c98a4]213def email(boolean log) {
[bd50205]214 node {
215 //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
216 //Configurations for email format
217 echo 'Notifying users of result'
218
219 def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1].toLowerCase()
220 def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${currentBuild.result}] - branch ${env.BRANCH_NAME}"
221 def email_body = """<p>This is an automated email from the Jenkins build machine. It was
[1781e97]222generated because of a git hooks/post-receive script following
223a ref change which was pushed to the C\u2200 repository.</p>
[9824500]224
[1781e97]225<p>- Status --------------------------------------------------------------</p>
[9824500]226
[1781e97]227<p>BUILD# ${env.BUILD_NUMBER} - ${currentBuild.result}</p>
228<p>Check console output at ${env.BUILD_URL} to view the results.</p>
229""" + Tools.GitLogMessage()
[bd50205]230
231 def email_to = !Settings.IsSandbox ? "cforall@lists.uwaterloo.ca" : "tdelisle@uwaterloo.ca"
232
233 if( Settings && !Settings.Silent ) {
234 //send email notification
235 emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
236 } else {
237 echo "Would send email to: ${email_to}"
238 echo "With title: ${email_subject}"
239 echo "Content: \n${email_body}"
240 }
[094a42c]241 }
[e8a22a7]242}
[5b8413b4]243
244//===========================================================================================================
245// Helper classes/variables/routines
246//===========================================================================================================
247//Description of a compiler (Must be serializable since pipelines are persistent)
248class CC_Desc implements Serializable {
[93fe3154]249 public String name
250 public String CXX
[6ebc13f]251 public String CC
[bf22bc6]252 public String lto
[93fe3154]253
[bf22bc6]254 CC_Desc(String name, String CXX, String CC, String lto) {
[93fe3154]255 this.name = name
256 this.CXX = CXX
[bf22bc6]257 this.CC = CC
258 this.lto = lto
[5b8413b4]259 }
260}
261
262//Description of an architecture (Must be serializable since pipelines are persistent)
263class Arch_Desc implements Serializable {
264 public String name
265 public String flags
[5307c33]266 public String node
[5b8413b4]267
[5307c33]268 Arch_Desc(String name, String flags, String node) {
[5b8413b4]269 this.name = name
270 this.flags = flags
[5307c33]271 this.node = node
[5b8413b4]272 }
273}
274
275class BuildSettings implements Serializable {
276 public final CC_Desc Compiler
277 public final Arch_Desc Architecture
278 public final Boolean RunAllTests
279 public final Boolean RunBenchmark
280 public final Boolean BuildDocumentation
281 public final Boolean Publish
282 public final Boolean Silent
283 public final Boolean IsSandbox
284 public final String DescLong
285 public final String DescShort
286
[a336d46]287 public String GitNewRef
288 public String GitOldRef
289
[490cb3c]290 BuildSettings(java.util.Collections$UnmodifiableMap param, String branch) {
[5b8413b4]291 switch( param.Compiler ) {
[cc27558]292 // builds runtime compiler cfa-cpp (clang missing -no-integrated-cpp)
[f36c916]293 // case 'gcc-4.9':
294 // this.Compiler = new CC_Desc('gcc-4.9', 'g++-4.9', 'gcc-4.9', '-flto=auto')
295 // break
296 // case 'gcc-5':
297 // this.Compiler = new CC_Desc('gcc-5', 'g++-5', 'gcc-5', '-flto=auto')
298 // break
299 // case 'gcc-6':
300 // this.Compiler = new CC_Desc('gcc-6', 'g++-6', 'gcc-6', '-flto=auto')
301 // break
[da10157]302 // case 'gcc-7':
303 // this.Compiler = new CC_Desc('gcc-7', 'g++-7', 'gcc-7', '-flto=auto')
304 // break
305 // case 'gcc-8':
306 // this.Compiler = new CC_Desc('gcc-8', 'g++-8', 'gcc-8', '-flto=auto')
307 // break
[099f5bd]308 case 'gcc-9':
[bf22bc6]309 this.Compiler = new CC_Desc('gcc-9', 'g++-9', 'gcc-9', '-flto=auto')
[099f5bd]310 break
[f36c916]311 case 'gcc-10':
312 this.Compiler = new CC_Desc('gcc-10', 'g++-10', 'gcc-10', '-flto=auto')
[099f5bd]313 break
[f36c916]314 case 'gcc-11':
315 this.Compiler = new CC_Desc('gcc-11', 'g++-11', 'gcc-11', '-flto=auto')
316 break
317 case 'gcc-12':
318 this.Compiler = new CC_Desc('gcc-12', 'g++-12', 'gcc-12', '-flto=auto')
[099f5bd]319 break
[cc27558]320 // Use only generic clang/gcc here because of unknown version numbers on different architectures.
[5b8413b4]321 case 'clang':
[8e5dc27]322 this.Compiler = new CC_Desc('clang', 'clang++', 'gcc-11', '-flto=thin -flto-jobs=0')
[5b8413b4]323 break
324 default :
325 error "Unhandled compiler : ${cc}"
326 }
327
328 switch( param.Architecture ) {
329 case 'x64':
[a3e8281]330 this.Architecture = new Arch_Desc('x64', '--host=x86_64', 'x64')
[5b8413b4]331 break
[f466d6b]332 //case 'x86':
333 // this.Architecture = new Arch_Desc('x86', '--host=i386', 'x86')
334 //break
[99a7163]335 // case 'arm64':
336 // this.Architecture = new Arch_Desc('arm64', '--host=aarch64', 'arm64')
337 // break
[5b8413b4]338 default :
339 error "Unhandled architecture : ${arch}"
340 }
341
[f95e8f0]342 this.IsSandbox = (branch == "jenkins-sandbox")
[5b8413b4]343 this.RunAllTests = param.RunAllTests
[7a230fd]344 this.RunBenchmark = param.RunBenchmark
[5b8413b4]345 this.BuildDocumentation = param.BuildDocumentation
[7a230fd]346 this.Publish = param.Publish
[5b8413b4]347 this.Silent = param.Silent
348
349 def full = param.RunAllTests ? " (Full)" : ""
[490cb3c]350 this.DescShort = "${ this.Compiler.name }:${ this.Architecture.name }${full}"
[5b8413b4]351
[93fe3154]352 this.DescLong = """Compiler : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC })
[5b8413b4]353Architecture : ${ this.Architecture.name }
354Arc Flags : ${ this.Architecture.flags }
355Run All Tests : ${ this.RunAllTests.toString() }
356Run Benchmark : ${ this.RunBenchmark.toString() }
357Build Documentation : ${ this.BuildDocumentation.toString() }
358Publish : ${ this.Publish.toString() }
359Silent : ${ this.Silent.toString() }
360"""
[a336d46]361
362 this.GitNewRef = ''
363 this.GitOldRef = ''
[5b8413b4]364 }
365}
366
367def prepare_build() {
368 // prepare the properties
[985b624]369 properties ([ \
370 buildDiscarder(logRotator( \
371 artifactDaysToKeepStr: '', \
372 artifactNumToKeepStr: '', \
373 daysToKeepStr: '730', \
374 numToKeepStr: '1000' \
375 )), \
376 [$class: 'ParametersDefinitionProperty', \
377 parameterDefinitions: [ \
378 [$class: 'ChoiceParameterDefinition', \
379 description: 'Which compiler to use', \
380 name: 'Compiler', \
[8e5dc27]381 choices: 'gcc-9\ngcc-10\ngcc-11\ngcc-12\ngcc-13\ngcc-14\nclang', \
[cc27558]382 defaultValue: 'gcc', \
[985b624]383 ], \
384 [$class: 'ChoiceParameterDefinition', \
385 description: 'The target architecture', \
386 name: 'Architecture', \
[2261bcc]387 choices: 'x64\nx86\narm64', \
[985b624]388 defaultValue: 'x64', \
389 ], \
390 [$class: 'BooleanParameterDefinition', \
[597e395]391 description: 'If false, the test suite is only ran in debug', \
[985b624]392 name: 'RunAllTests', \
393 defaultValue: false, \
394 ], \
395 [$class: 'BooleanParameterDefinition', \
396 description: 'If true, jenkins also runs benchmarks', \
397 name: 'RunBenchmark', \
398 defaultValue: false, \
399 ], \
400 [$class: 'BooleanParameterDefinition', \
401 description: 'If true, jenkins also builds documentation', \
402 name: 'BuildDocumentation', \
403 defaultValue: true, \
404 ], \
405 [$class: 'BooleanParameterDefinition', \
406 description: 'If true, jenkins also publishes results', \
407 name: 'Publish', \
408 defaultValue: false, \
409 ], \
410 [$class: 'BooleanParameterDefinition', \
411 description: 'If true, jenkins will not send emails', \
412 name: 'Silent', \
413 defaultValue: false, \
414 ], \
[5b8413b4]415 ],
416 ]])
[f36c916]417 // choices: 'gcc-4.9\ngcc-5\ngcc-6\ngcc-7\ngcc-8\ngcc-9\ngcc-10\ngcc-11\nclang',
[985b624]418 // defaultValue: 'gcc-8',
[5b8413b4]419
[bd8dca2]420 // It's unfortunate but it looks like we need to checkout the entire repo just to get
421 // - the pretty git printer
422 // - Jenkins.tools
[4c55047]423 checkout scm
[2407853]424
[1483a16]425 Tools = load "Jenkins/tools.groovy"
[bd8dca2]426
[490cb3c]427 final settings = new BuildSettings(params, env.BRANCH_NAME)
[5b8413b4]428
429 currentBuild.description = settings.DescShort
430 echo settings.DescLong
431
432 return settings
433}
434
435def make_doc() {
436 def err = null
437 try {
438 sh 'make clean > /dev/null'
439 sh 'make > /dev/null 2>&1'
440 }
441 catch (Exception caughtError) {
442 err = caughtError //rethrow error later
[65f4a51]443 sh 'cat build/*.log'
[5b8413b4]444 }
445 finally {
446 if (err) throw err // Must re-throw exception to propagate error
447 }
[a2a0065]448}
Note: See TracBrowser for help on using the repository browser.