1 |
|
---|
2 | //===========================================================================================================
|
---|
3 | // Main compilation routine
|
---|
4 | //===========================================================================================================
|
---|
5 | //Compilation script is done here but environnement set-up and error handling is done in main loop
|
---|
6 | def cfa_build() {
|
---|
7 | build_stage 'Checkout'
|
---|
8 | def install_dir = pwd tmp: true
|
---|
9 | //checkout the source code and clean the repo
|
---|
10 | checkout scm
|
---|
11 | sh 'git clean -fdqx'
|
---|
12 | sh 'git reset --hard'
|
---|
13 |
|
---|
14 | build_stage 'Build'
|
---|
15 |
|
---|
16 | //Configure the conpilation (Output is not relevant)
|
---|
17 | //Use the current directory as the installation target so nothing
|
---|
18 | //escapes the sandbox
|
---|
19 | //Also specify the compiler by hand
|
---|
20 | sh "./configure CXX=${currentCC.cpp_cc} --with-backend-compiler=${currentCC.cfa_backend_cc} --prefix=${install_dir} > /dev/null"
|
---|
21 |
|
---|
22 | //Compile the project
|
---|
23 | sh 'make -j 8 install'
|
---|
24 |
|
---|
25 | build_stage 'Test'
|
---|
26 |
|
---|
27 | //Run the tests from the example directory
|
---|
28 | dir ('src/examples') {
|
---|
29 | sh './runTests.sh'
|
---|
30 | }
|
---|
31 |
|
---|
32 | build_stage 'Cleanup'
|
---|
33 |
|
---|
34 | //do a maintainer-clean to make sure we need to remake from scratch
|
---|
35 | sh 'make maintainer-clean > /dev/null'
|
---|
36 | }
|
---|
37 |
|
---|
38 | //===========================================================================================================
|
---|
39 | // Helper classes/variables/routines to make the status and stage name easier to use
|
---|
40 | //===========================================================================================================
|
---|
41 | //Description of a compiler (Must be serializable since pipelines are persistent)
|
---|
42 | class CC_Desc implements Serializable {
|
---|
43 | public String cc_name
|
---|
44 | public String cpp_cc
|
---|
45 | public String cfa_backend_cc
|
---|
46 |
|
---|
47 | CC_Desc(String cc_name, String cpp_cc, String cfa_backend_cc) {
|
---|
48 | this.cc_name = cc_name
|
---|
49 | this.cpp_cc = cpp_cc
|
---|
50 | this.cfa_backend_cc = cfa_backend_cc
|
---|
51 | }
|
---|
52 | }
|
---|
53 |
|
---|
54 | //Global Variables defining the compiler and at which point in the build we are
|
---|
55 | // These variables are used but can't be declared before hand because of wierd scripting rules
|
---|
56 | // @Field String currentCC
|
---|
57 | // @Field String status_prefix
|
---|
58 |
|
---|
59 | //Wrapper to sync stage name and status name
|
---|
60 | def build_stage(String name) {
|
---|
61 | def stage_name = "${currentCC.cc_name} ${name}".trim()
|
---|
62 | stage stage_name
|
---|
63 |
|
---|
64 | status_prefix = stage_name
|
---|
65 | }
|
---|
66 |
|
---|
67 | //===========================================================================================================
|
---|
68 | // Main loop of the compilation
|
---|
69 | //===========================================================================================================
|
---|
70 | node ('master'){
|
---|
71 |
|
---|
72 | def err = null
|
---|
73 | def log_needed = false
|
---|
74 | currentBuild.result = "SUCCESS"
|
---|
75 |
|
---|
76 | properties
|
---|
77 | [[$class: 'ParametersDefinitionProperty', parameterDefinitions:
|
---|
78 | [[$class: 'StringParameterDefinition', name: 'git_ref_name', defaultValue: 'master', description: 'name of the ref that changed' ],
|
---|
79 | [$class: 'StringParameterDefinition', name: 'git_ref_new_value', defaultValue: 'HEAD', description: 'new commit of the reference' ],
|
---|
80 | [$class: 'StringParameterDefinition', name: 'git_ref_old_value', defaultValue: 'HEAD~1', description: 'old commit of the reference']]
|
---|
81 | ]]
|
---|
82 |
|
---|
83 |
|
---|
84 | try {
|
---|
85 | //Prevent the build from exceeding 30 minutes
|
---|
86 | timeout(30) {
|
---|
87 |
|
---|
88 | //Wrap build to add timestamp to command line
|
---|
89 | wrap([$class: 'TimestamperBuildWrapper']) {
|
---|
90 |
|
---|
91 | //Compile using gcc-4.9
|
---|
92 | currentCC = new CC_Desc('gcc-4.9', 'g++-4.9', 'gcc-4.9')
|
---|
93 | cfa_build()
|
---|
94 |
|
---|
95 | //Compile using gcc-5
|
---|
96 | currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5')
|
---|
97 | cfa_build()
|
---|
98 |
|
---|
99 | //Compile using gcc-4.9
|
---|
100 | currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6')
|
---|
101 | cfa_build()
|
---|
102 |
|
---|
103 | }
|
---|
104 | }
|
---|
105 |
|
---|
106 | }
|
---|
107 |
|
---|
108 | //If an exception is caught we need to change the status and remember to
|
---|
109 | //attach the build log to the email
|
---|
110 | catch (Exception caughtError) {
|
---|
111 | //rethrow error later
|
---|
112 | err = caughtError
|
---|
113 |
|
---|
114 | //An error has occured, the build log is relevent
|
---|
115 | log_needed = true
|
---|
116 |
|
---|
117 | //Store the result of the build log
|
---|
118 | currentBuild.result = "${status_prefix} FAILURE".trim()
|
---|
119 | }
|
---|
120 |
|
---|
121 | finally {
|
---|
122 | //Send email with final results
|
---|
123 | email(currentBuild.result, log_needed)
|
---|
124 |
|
---|
125 | /* Must re-throw exception to propagate error */
|
---|
126 | if (err) {
|
---|
127 | throw err
|
---|
128 | }
|
---|
129 | }
|
---|
130 | }
|
---|
131 |
|
---|
132 | //===========================================================================================================
|
---|
133 | //Routine responsible of sending the email notification once the build is completed
|
---|
134 | //===========================================================================================================
|
---|
135 | def email(String status, boolean log) {
|
---|
136 | //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
|
---|
137 | //Configurations for email format
|
---|
138 | def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1].toLowerCase()
|
---|
139 |
|
---|
140 | def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${status}] - branch ${env.BRANCH_NAME}"
|
---|
141 | def email_body = """This is an automated email from the Jenkins build machine. It was
|
---|
142 | generated because of a git hooks/post-receive script following
|
---|
143 | a ref change was pushed to the repository containing
|
---|
144 | the project "UNNAMED PROJECT".
|
---|
145 |
|
---|
146 | The branch ${env.BRANCH_NAME} has been updated.
|
---|
147 |
|
---|
148 | Check console output at ${env.BUILD_URL} to view the results."""
|
---|
149 |
|
---|
150 | // def config = new File('/u/cforall/software/cfa/cfa-cc/config').text
|
---|
151 | // def email_to = (config =~ /mailinglist ?= ?(.+)/)[0][1]
|
---|
152 | def email_to = "pabuhr@uwaterloo.ca, rschlunt@uwaterloo.ca, a3moss@uwaterloo.ca, tdelisle@uwaterloo.ca, brice.dobry@huawei.com"
|
---|
153 |
|
---|
154 | //send email notification
|
---|
155 | emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
|
---|
156 | }
|
---|