source: Jenkins/FullBuild @ b4a573c

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since b4a573c was b4a573c, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Fixed bad copy/paste in full build script

  • Property mode set to 100644
File size: 4.6 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                                        clang_x86: { trigger_build( 'gcc-8',   'x86' ) },
20                                        gcc_5_x86: { trigger_build( 'gcc-7',   'x86' ) },
21                                        gcc_6_x86: { trigger_build( 'gcc-6',   'x86' ) },
22                                        gcc_9_x64: { trigger_build( 'gcc-9',   'x64' ) },
23                                        gcc_8_x64: { trigger_build( 'gcc-8',   'x64' ) },
24                                        gcc_7_x64: { trigger_build( 'gcc-7',   'x64' ) },
25                                        gcc_6_x64: { trigger_build( 'gcc-6',   'x64' ) },
26                                        gcc_5_x64: { trigger_build( 'gcc-5',   'x64' ) },
27                                        clang_x64: { trigger_build( 'clang',   'x64' ) },
28                                )
29                        }
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) {
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: true],                                 \
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//Helper routine to collect information about the git history
97def collect_git_info() {
98
99        //create the temporary output directory in case it doesn't already exist
100        def out_dir = pwd tmp: true
101        sh "mkdir -p ${out_dir}"
102
103        //parse git logs to find what changed
104        dir("../Cforall_Full_Build@script") {
105                sh "git reflog > ${out_dir}/GIT_COMMIT"
106        }
107        git_reflog = readFile("${out_dir}/GIT_COMMIT")
108        gitRefOldValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][1]
109        gitRefNewValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][2]
110}
111
112//===========================================================================================================
113//Routine responsible of sending the email notification once the build is completed
114//===========================================================================================================
115
116//Email notification on a full build failure
117def promote_email(boolean success) {
118        echo('notifying users')
119
120        def result = success ? "PROMOTE - SUCCESS" : "PROMOTE - FAILURE"
121
122        //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
123        //Configurations for email format
124        def email_subject = "[cforall git][${result}]"
125        def email_body = """<p>This is an automated email from the Jenkins build machine. It was
126generated following the result of the C\u2200 nightly build.</p>
127
128<p>Check console output at ${env.BUILD_URL} to view the results.</p>
129
130<p>- Status --------------------------------------------------------------</p>
131
132<p>${result}</p>
133
134<p>- Performance ---------------------------------------------------------</p>
135
136<img src="https://cforall.uwaterloo.ca/jenkins/job/Cforall/job/master/plot/Compilation/getPlot?index=0" >
137<img src="https://cforall.uwaterloo.ca/jenkins/job/Cforall/job/master/plot/Compilation/getPlot?index=1" >
138
139<p>- Logs ----------------------------------------------------------------</p>
140"""
141
142        def email_to = "cforall@lists.uwaterloo.ca"
143
144        //send email notification
145        emailext body: email_body, subject: email_subject, to: email_to, attachLog: !success
146}
Note: See TracBrowser for help on using the repository browser.