source: Jenkins/FullBuild@ e2862d3

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since e2862d3 was 13c98a4, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Jenkins emails now use html, this push does some work to improve how they look

  • Property mode set to 100644
File size: 5.2 KB
RevLine 
[ae28ee2]1#!groovy
2
3//===========================================================================================================
4// Main loop of the compilation
5//===========================================================================================================
6
7node ('master') {
8 def err = null
9
10 try {
[f408e1a]11 //Wrap build to add timestamp to command line
12 wrap([$class: 'TimestamperBuildWrapper']) {
13
14 stage('Build') {
15
16 results = [null, null]
17
18 parallel (
19 gcc_6_x64: { trigger_build( 'gcc-6', 'x64', true ) },
20 gcc_6_x86: { trigger_build( 'gcc-6', 'x86', true ) },
21 gcc_5_x64: { trigger_build( 'gcc-5', 'x64', false ) },
22 gcc_5_x86: { trigger_build( 'gcc-5', 'x86', false ) },
23 clang_x64: { trigger_build( 'clang', 'x64', false ) },
24 clang_x86: { trigger_build( 'clang', 'x86', false ) },
25 )
[ae28ee2]26 }
[f408e1a]27
28 //Push latest changes to do-lang repo
[13c98a4]29 // push_build()
[ae28ee2]30 }
[13c98a4]31
32 promote_email(true)
[ae28ee2]33 }
34
35 //If an exception is caught we need to change the status and remember to
36 //attach the build log to the email
37 catch (Exception caughtError) {
38 echo('error caught')
39
40 //rethrow error later
41 err = caughtError
42
43 //Store the result of the build log
44 currentBuild.result = 'FAILURE'
45
46 //Send email to notify the failure
[13c98a4]47 promote_email(false)
[ae28ee2]48 }
49
50 finally {
51 //Must re-throw exception to propagate error
52 if (err) {
53 throw err
54 }
55 }
56}
57//===========================================================================================================
58// Main compilation routines
59//===========================================================================================================
60
[3831b58]61def trigger_build(String cc, String arch, Boolean publish) {
[ae28ee2]62 def result = build job: 'Cforall/master', \
63 parameters: [ \
[8fa3c7e6]64 [$class: 'StringParameterValue', \
[0c1d240]65 name: 'Compiler', \
[8fa3c7e6]66 value: cc], \
67 [$class: 'StringParameterValue', \
[0c1d240]68 name: 'Architecture', \
[8fa3c7e6]69 value: arch], \
[ae28ee2]70 [$class: 'BooleanParameterValue', \
[0c1d240]71 name: 'RunAllTests', \
[8fa3c7e6]72 value: true], \
73 [$class: 'BooleanParameterValue', \
[0c1d240]74 name: 'RunBenchmark', \
[8fa3c7e6]75 value: true], \
76 [$class: 'BooleanParameterValue', \
[0c1d240]77 name: 'BuildDocumentation', \
[8fa3c7e6]78 value: true], \
79 [$class: 'BooleanParameterValue', \
[0c1d240]80 name: 'Publish', \
81 value: publish], \
[8fa3c7e6]82 [$class: 'BooleanParameterValue', \
[0c1d240]83 name: 'Silent', \
[ae28ee2]84 value: true], \
85 ], \
86 propagate: false
87
88 echo(result.result)
89
90 if(result.result != 'SUCCESS') {
[27474a7]91 sh("wget -q -O - http://localhost:8084/jenkins/job/Cforall/job/master/${result.number}/consoleText")
[ae28ee2]92 error(result.result)
93 }
94}
95
[13c98a4]96// def push_build() {
97// //Don't use the build_stage function which outputs the compiler
98// stage('Push') {
[ae28ee2]99
[13c98a4]100// status_prefix = 'Push'
[ae28ee2]101
[13c98a4]102// def out_dir = pwd tmp: true
103// sh "mkdir -p ${out_dir}"
[ae28ee2]104
[13c98a4]105// //checkout the code to make sure this is a valid git repo
106// checkout scm
[ae28ee2]107
[13c98a4]108// collect_git_info()
[ae28ee2]109
[13c98a4]110// //parse git logs to find what changed
111// sh "git remote > ${out_dir}/GIT_REMOTE"
112// git_remote = readFile("${out_dir}/GIT_REMOTE")
113// remoteDoLangExists = git_remote.contains("DoLang")
[ae28ee2]114
[13c98a4]115// if( !remoteDoLangExists ) {
116// sh 'git remote add DoLang git@gitlab.do-lang.org:internal/cfa-cc.git'
117// }
[ae28ee2]118
[13c98a4]119// //sh "GIT_SSH_COMMAND=\"ssh -v\" git push DoLang ${gitRefNewValue}:master"
120// echo('BUILD NOT PUSH SINCE DO-LANG SERVER WAS DOWN')
121// }
122// }
[ae28ee2]123
124//Helper routine to collect information about the git history
125def collect_git_info() {
126
127 //create the temporary output directory in case it doesn't already exist
128 def out_dir = pwd tmp: true
129 sh "mkdir -p ${out_dir}"
130
131 //parse git logs to find what changed
132 dir("../Cforall_Full_Build@script") {
133 sh "git reflog > ${out_dir}/GIT_COMMIT"
134 }
135 git_reflog = readFile("${out_dir}/GIT_COMMIT")
136 gitRefOldValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][1]
137 gitRefNewValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][2]
138}
139
140//===========================================================================================================
141//Routine responsible of sending the email notification once the build is completed
142//===========================================================================================================
143
144//Email notification on a full build failure
[13c98a4]145def promote_email(boolean success) {
[ae28ee2]146 echo('notifying users')
147
[13c98a4]148 def result = success ? "PROMOTE - SUCCESS" : "PROMOTE - FAILURE"
149
[ae28ee2]150 //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
151 //Configurations for email format
[13c98a4]152 def email_subject = "[cforall git][${result}]"
153 def email_body = """<p>This is an automated email from the Jenkins build machine. It was
154generated following the result of the C∀ nightly build.</p>
155
156<p>Check console output at ${env.BUILD_URL} to view the results.</p>
157
158<p>- Status --------------------------------------------------------------</p>
[ae28ee2]159
[13c98a4]160<p>${result}</p>
[ae28ee2]161
[13c98a4]162<p>- Performance --------------------------------------------------------------</p>
[ae28ee2]163
[13c98a4]164<img src="https://cforall.uwaterloo.ca/jenkins/view/all/job/Plot%20Plugin%20Test/plot/getPlot?index=0" >
[ae28ee2]165"""
166
[e39647e]167 def email_to = "cforall@lists.uwaterloo.ca"
[ae28ee2]168
169 //send email notification
[13c98a4]170 emailext body: email_body, subject: email_subject, to: email_to, attachLog: !success
[ae28ee2]171}
Note: See TracBrowser for help on using the repository browser.