[1b8c156] | 1 | #!groovy
|
---|
| 2 |
|
---|
[6003581] | 3 | //===========================================================================================================
|
---|
| 4 | // Main compilation routines
|
---|
| 5 | //===========================================================================================================
|
---|
[5ed9061] | 6 |
|
---|
| 7 | def trigger_build(String arch) {
|
---|
| 8 | def result = build job: 'Cforall/master', \
|
---|
| 9 | parameters: [ \
|
---|
| 10 | [$class: 'BooleanParameterValue', \
|
---|
| 11 | name: 'isFullBuild', \
|
---|
| 12 | value: true], \
|
---|
| 13 | [$class: 'StringParameterValue', \
|
---|
| 14 | name: 'buildArchitecture', \
|
---|
| 15 | value: arch] \
|
---|
| 16 | ]
|
---|
| 17 |
|
---|
| 18 | echo(result.result)
|
---|
| 19 | echo(result.absoluteUrl)
|
---|
| 20 | }
|
---|
| 21 |
|
---|
[1b8c156] | 22 | def push_build() {
|
---|
| 23 | //Don't use the build_stage function which outputs the compiler
|
---|
| 24 | stage 'Push'
|
---|
| 25 |
|
---|
| 26 | status_prefix = 'Push'
|
---|
| 27 |
|
---|
| 28 | def out_dir = pwd tmp: true
|
---|
| 29 | sh "mkdir -p ${out_dir}"
|
---|
| 30 |
|
---|
[cb2e8ce] | 31 | //checkout the code to make sure this is a valid git repo
|
---|
| 32 | checkout scm
|
---|
| 33 |
|
---|
[920725d] | 34 | collect_git_info()
|
---|
| 35 |
|
---|
[1b8c156] | 36 | //parse git logs to find what changed
|
---|
| 37 | sh "git remote > ${out_dir}/GIT_REMOTE"
|
---|
| 38 | git_remote = readFile("${out_dir}/GIT_REMOTE")
|
---|
| 39 | remoteDoLangExists = git_remote.contains("DoLang")
|
---|
| 40 |
|
---|
| 41 | if( !remoteDoLangExists ) {
|
---|
| 42 | sh 'git remote add DoLang git@gitlab.do-lang.org:internal/cfa-cc.git'
|
---|
| 43 | }
|
---|
| 44 |
|
---|
[e21c72d] | 45 | //sh "GIT_SSH_COMMAND=\"ssh -v\" git push DoLang ${gitRefNewValue}:master"
|
---|
| 46 | echo('BUILD NOT PUSH SINCE DO-LANG SERVER WAS DOWN')
|
---|
[1b8c156] | 47 | }
|
---|
| 48 |
|
---|
[920725d] | 49 | //Helper routine to collect information about the git history
|
---|
| 50 | def collect_git_info() {
|
---|
| 51 |
|
---|
| 52 | //create the temporary output directory in case it doesn't already exist
|
---|
| 53 | def out_dir = pwd tmp: true
|
---|
| 54 | sh "mkdir -p ${out_dir}"
|
---|
| 55 |
|
---|
| 56 | //parse git logs to find what changed
|
---|
[284b7aa] | 57 | dir("../Cforall_Full_Build@script") {
|
---|
[920725d] | 58 | sh "git reflog > ${out_dir}/GIT_COMMIT"
|
---|
| 59 | }
|
---|
| 60 | git_reflog = readFile("${out_dir}/GIT_COMMIT")
|
---|
| 61 | gitRefOldValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][1]
|
---|
| 62 | gitRefNewValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][2]
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[6003581] | 65 | //===========================================================================================================
|
---|
| 66 | // Main loop of the compilation
|
---|
| 67 | //===========================================================================================================
|
---|
[121f499] | 68 |
|
---|
[ad5b73e] | 69 | node ('master') {
|
---|
[155cce0f] | 70 | def err = null
|
---|
| 71 |
|
---|
[ad5b73e] | 72 | try {
|
---|
| 73 | //Prevent the build from exceeding 30 minutes
|
---|
| 74 | timeout(60) {
|
---|
| 75 |
|
---|
| 76 | //Wrap build to add timestamp to command line
|
---|
| 77 | wrap([$class: 'TimestamperBuildWrapper']) {
|
---|
| 78 |
|
---|
| 79 | stage 'Build'
|
---|
| 80 |
|
---|
| 81 | results = [null, null]
|
---|
| 82 |
|
---|
[155cce0f] | 83 | parallel (
|
---|
| 84 | x64: {
|
---|
| 85 | trigger_build('64-bit')
|
---|
| 86 | },
|
---|
| 87 | x32: {
|
---|
| 88 | trigger_build('32-bit')
|
---|
| 89 | }
|
---|
| 90 | )
|
---|
[ad5b73e] | 91 |
|
---|
| 92 | //Push latest changes to do-lang repo
|
---|
| 93 | push_build()
|
---|
| 94 | }
|
---|
[6003581] | 95 | }
|
---|
| 96 | }
|
---|
| 97 |
|
---|
[121f499] | 98 | //If an exception is caught we need to change the status and remember to
|
---|
| 99 | //attach the build log to the email
|
---|
| 100 | catch (Exception caughtError) {
|
---|
[e109716] | 101 | echo('error caught')
|
---|
| 102 |
|
---|
[121f499] | 103 | //rethrow error later
|
---|
| 104 | err = caughtError
|
---|
[6003581] | 105 |
|
---|
[121f499] | 106 | //Store the result of the build log
|
---|
| 107 | currentBuild.result = "${status_prefix} FAILURE".trim()
|
---|
[6003581] | 108 |
|
---|
[121f499] | 109 | //Send email to notify the failure
|
---|
| 110 | promote_email(currentBuild.result)
|
---|
[6003581] | 111 | }
|
---|
| 112 |
|
---|
[121f499] | 113 | finally {
|
---|
| 114 | //Must re-throw exception to propagate error
|
---|
| 115 | if (err) {
|
---|
| 116 | throw err
|
---|
| 117 | }
|
---|
| 118 | }
|
---|
| 119 | }
|
---|
[6003581] | 120 | //===========================================================================================================
|
---|
| 121 | //Routine responsible of sending the email notification once the build is completed
|
---|
| 122 | //===========================================================================================================
|
---|
[1b8c156] | 123 |
|
---|
| 124 | //Email notification on a full build failure
|
---|
| 125 | def promote_email(String status) {
|
---|
[e109716] | 126 | echo('notifying users')
|
---|
| 127 |
|
---|
[1b8c156] | 128 | //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
|
---|
| 129 | //Configurations for email format
|
---|
| 130 | def email_subject = "[cforall git][PROMOTE - FAILURE]"
|
---|
| 131 | def email_body = """This is an automated email from the Jenkins build machine. It was
|
---|
| 132 | generated because of a git hooks/post-receive script following
|
---|
| 133 | a ref change was pushed to the repository containing
|
---|
| 134 | the project "UNNAMED PROJECT".
|
---|
| 135 |
|
---|
| 136 | Check console output at ${env.BUILD_URL} to view the results.
|
---|
| 137 |
|
---|
| 138 | - Status --------------------------------------------------------------
|
---|
| 139 |
|
---|
| 140 | PROMOTE FAILURE - ${status}
|
---|
| 141 | """
|
---|
| 142 |
|
---|
| 143 | def email_to = "pabuhr@uwaterloo.ca, rschlunt@uwaterloo.ca, a3moss@uwaterloo.ca, tdelisle@uwaterloo.ca, brice.dobry@huawei.com"
|
---|
| 144 |
|
---|
| 145 | //send email notification
|
---|
| 146 | emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
|
---|
| 147 | }
|
---|