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