source: Jenkins/FullBuild@ 47bfefd

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 47bfefd 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
Line 
1#!groovy
2
3//===========================================================================================================
4// Main loop of the compilation
5//===========================================================================================================
6
7node ('master') {
8 def err = null
9
10 try {
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 )
26 }
27
28 //Push latest changes to do-lang repo
29 // push_build()
30 }
31
32 promote_email(true)
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
47 promote_email(false)
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
61def trigger_build(String cc, String arch, Boolean publish) {
62 def result = build job: 'Cforall/master', \
63 parameters: [ \
64 [$class: 'StringParameterValue', \
65 name: 'Compiler', \
66 value: cc], \
67 [$class: 'StringParameterValue', \
68 name: 'Architecture', \
69 value: arch], \
70 [$class: 'BooleanParameterValue', \
71 name: 'RunAllTests', \
72 value: true], \
73 [$class: 'BooleanParameterValue', \
74 name: 'RunBenchmark', \
75 value: true], \
76 [$class: 'BooleanParameterValue', \
77 name: 'BuildDocumentation', \
78 value: true], \
79 [$class: 'BooleanParameterValue', \
80 name: 'Publish', \
81 value: publish], \
82 [$class: 'BooleanParameterValue', \
83 name: 'Silent', \
84 value: true], \
85 ], \
86 propagate: false
87
88 echo(result.result)
89
90 if(result.result != 'SUCCESS') {
91 sh("wget -q -O - http://localhost:8084/jenkins/job/Cforall/job/master/${result.number}/consoleText")
92 error(result.result)
93 }
94}
95
96// def push_build() {
97// //Don't use the build_stage function which outputs the compiler
98// stage('Push') {
99
100// status_prefix = 'Push'
101
102// def out_dir = pwd tmp: true
103// sh "mkdir -p ${out_dir}"
104
105// //checkout the code to make sure this is a valid git repo
106// checkout scm
107
108// collect_git_info()
109
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")
114
115// if( !remoteDoLangExists ) {
116// sh 'git remote add DoLang git@gitlab.do-lang.org:internal/cfa-cc.git'
117// }
118
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// }
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
145def promote_email(boolean success) {
146 echo('notifying users')
147
148 def result = success ? "PROMOTE - SUCCESS" : "PROMOTE - FAILURE"
149
150 //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
151 //Configurations for email format
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>
159
160<p>${result}</p>
161
162<p>- Performance --------------------------------------------------------------</p>
163
164<img src="https://cforall.uwaterloo.ca/jenkins/view/all/job/Plot%20Plugin%20Test/plot/getPlot?index=0" >
165"""
166
167 def email_to = "cforall@lists.uwaterloo.ca"
168
169 //send email notification
170 emailext body: email_body, subject: email_subject, to: email_to, attachLog: !success
171}
Note: See TracBrowser for help on using the repository browser.