[c9d651d] | 1 |
|
---|
[29f4fe62] | 2 | //===========================================================================================================
|
---|
| 3 | // Main compilation routine
|
---|
| 4 | //===========================================================================================================
|
---|
| 5 | //Compilation script is done here but environnement set-up and error handling is done in main loop
|
---|
[77f347d] | 6 | def build() {
|
---|
| 7 | build_stage 'Checkout'
|
---|
[992c26d] | 8 | def install_dir = pwd tmp: true
|
---|
[77f347d] | 9 | //checkout the source code and clean the repo
|
---|
[992c26d] | 10 | sh "rm -rf * ${install_dir}/*"
|
---|
[77f347d] | 11 | checkout scm
|
---|
[23a14d86] | 12 |
|
---|
[77f347d] | 13 | build_stage 'Build'
|
---|
[7aebc62] | 14 |
|
---|
[77f347d] | 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
|
---|
[992c26d] | 19 | sh "./configure CXX=${currentCC.cpp-cc} --with-backend-compiler=${currentCC.cfa-backend-cc} --prefix=${install_dir} > /dev/null"
|
---|
[fde808df] | 20 |
|
---|
[77f347d] | 21 | //Compile the project
|
---|
| 22 | sh 'make -j 8 install'
|
---|
[fde808df] | 23 |
|
---|
[77f347d] | 24 | build_stage 'Test'
|
---|
[fde808df] | 25 |
|
---|
[29f4fe62] | 26 | //Run the tests from the example directory
|
---|
[77f347d] | 27 | dir ('src/examples') {
|
---|
| 28 | sh './runTests.sh'
|
---|
| 29 | }
|
---|
[fde808df] | 30 |
|
---|
[77f347d] | 31 | build_stage 'Cleanup'
|
---|
[7359098] | 32 |
|
---|
[29f4fe62] | 33 | //Cleanup the install dir
|
---|
| 34 | sh "rm -rf ${install_dir}/*"
|
---|
[77f347d] | 35 | }
|
---|
[7359098] | 36 |
|
---|
[29f4fe62] | 37 | //===========================================================================================================
|
---|
| 38 | // Helper classes/variables/routines to make the status and stage name easier to use
|
---|
| 39 | //===========================================================================================================
|
---|
| 40 | //Description of a compiler
|
---|
[992c26d] | 41 | class CC_Desc {
|
---|
[65fdb59] | 42 | public String cc-name
|
---|
| 43 | public String cpp-cc
|
---|
| 44 | public String cfa-backend-cc
|
---|
[992c26d] | 45 | }
|
---|
| 46 |
|
---|
[29f4fe62] | 47 | //Global Variables defining the compiler and at which point in the build we are
|
---|
[992c26d] | 48 | def currentCC
|
---|
[29f4fe62] | 49 | def status_prefix
|
---|
[fde808df] | 50 |
|
---|
[29f4fe62] | 51 | //Wrapper to sync stage name and status name
|
---|
[77f347d] | 52 | def build_stage(String name) {
|
---|
[65fdb59] | 53 | def stage_name = "${currentCC.cc-name} ${name}".trim()
|
---|
[77f347d] | 54 | stage stage_name
|
---|
[fde808df] | 55 |
|
---|
[77f347d] | 56 | status_prefix = stage_name
|
---|
| 57 | }
|
---|
[fde808df] | 58 |
|
---|
[29f4fe62] | 59 | //===========================================================================================================
|
---|
| 60 | // Main loop of the compilation
|
---|
| 61 | //===========================================================================================================
|
---|
[77f347d] | 62 | node ('master'){
|
---|
[fde808df] | 63 |
|
---|
[77f347d] | 64 | def err = null
|
---|
| 65 | def log_needed = false
|
---|
| 66 | currentBuild.result = "SUCCESS"
|
---|
| 67 |
|
---|
| 68 | try {
|
---|
[29f4fe62] | 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 | }
|
---|
[fde808df] | 81 |
|
---|
[f43a200] | 82 | }
|
---|
| 83 |
|
---|
[29f4fe62] | 84 | //If an exception is caught we need to change the status and remember to
|
---|
| 85 | //attach the build log to the email
|
---|
[fde808df] | 86 | catch (Exception caughtError) {
|
---|
[29f4fe62] | 87 | //rethrow error later
|
---|
[fde808df] | 88 | err = caughtError
|
---|
[29f4fe62] | 89 |
|
---|
| 90 | //An error has occured, the build log is relevent
|
---|
[b287f67] | 91 | log_needed = true
|
---|
[29f4fe62] | 92 |
|
---|
| 93 | //Store the result of the build log
|
---|
[992c26d] | 94 | currentBuild.result = "${status_prefix} FAILURE".trim()
|
---|
[fde808df] | 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 | }
|
---|
[d3d0069] | 105 | }
|
---|
[7aebc62] | 106 | }
|
---|
[f2b977a] | 107 |
|
---|
[29f4fe62] | 108 | //===========================================================================================================
|
---|
| 109 | //Routine responsible of sending the email notification once the build is completed
|
---|
| 110 | //===========================================================================================================
|
---|
[19ad15b] | 111 | def email(String status, boolean log) {
|
---|
[e8a22a7] | 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 |
|
---|
[992c26d] | 116 | def email_subject = "[${project_name} git][BUILD# ${env.BUILD_NUMBER} - ${status}] - branch ${env.BRANCH_NAME}"
|
---|
[848fb00] | 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".
|
---|
[e8a22a7] | 121 |
|
---|
[848fb00] | 122 | The branch ${env.BRANCH_NAME} has been updated.
|
---|
[e8a22a7] | 123 |
|
---|
[848fb00] | 124 | Check console output at ${env.BUILD_URL} to view the results."""
|
---|
[e8a22a7] | 125 |
|
---|
[a6b7480] | 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"
|
---|
[e8a22a7] | 129 |
|
---|
| 130 | //send email notification
|
---|
[1e34653] | 131 | emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
|
---|
[e8a22a7] | 132 | }
|
---|