ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change
on this file since c77aa5a was
c77aa5a,
checked in by Thierry Delisle <tdelisle@…>, 8 years ago
|
fixed stupid error in jenkinsfile
|
-
Property mode set to
100644
|
File size:
943 bytes
|
Rev | Line | |
---|
[c9d651d] | 1 | |
---|
| 2 | //Configurations for email format |
---|
| 3 | def email_subject = '[$PROJECT_NAME git] - branch $GIT_BRANCH - Build # $BUILD_NUMBER - $BUILD_STATUS!' |
---|
| 4 | def email_body = '''This is an automated email from the Jenkins build machine. It was |
---|
| 5 | generated because of a git hooks/post-receive script following |
---|
| 6 | a ref change was pushed to the repository containing |
---|
| 7 | the project "UNNAMED PROJECT". |
---|
| 8 | |
---|
| 9 | The branch $GIT_BRANCH has been updated |
---|
| 10 | via $GIT_COMMIT (commit) |
---|
| 11 | from $GIT_PREVIOUS_COMMIT (commit) |
---|
| 12 | |
---|
| 13 | Those revisions listed above that are new to this repository have |
---|
| 14 | not appeared on any other notification email; so we list those |
---|
| 15 | revisions in full, below. |
---|
| 16 | |
---|
| 17 | Check console output at $BUILD_URL to view the results.''' |
---|
| 18 | |
---|
[725f36f5] | 19 | node ('master'){ |
---|
[aad5a48] | 20 | stage 'Build' |
---|
| 21 | checkout scm //checkout the source code from source control |
---|
| 22 | sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure' |
---|
| 23 | sh 'make -j 8' |
---|
[c9d651d] | 24 | emailext body: email_body, subject: email_subject, to: 'tdelisle@uwaterloo.ca' |
---|
[aad5a48] | 25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.