source: Jenkinsfile@ 5095a00

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 5095a00 was 5095a00, checked in by Thierry Delisle <tdelisle@…>, 10 years ago

moved up prints since apparently the build crashes earlier

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