source: Jenkinsfile @ 3410c12

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 3410c12 was 3410c12, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Outputting environment variables for build

  • Property mode set to 100644
File size: 1.1 KB
Line 
1
2//Configurations for email format
3def email_subject_template = '[$PROJECT_NAME git] - branch $GIT_BRANCH - Build # $BUILD_NUMBER - $BUILD_STATUS!'
4def email_body_template = '''This is an automated email from the Jenkins build machine. It was
5generated because of a git hooks/post-receive script following
6a ref change was pushed to the repository containing
7the project "UNNAMED PROJECT".
8
9The branch $GIT_BRANCH has been updated
10       via  $GIT_COMMIT (commit)
11      from  $GIT_PREVIOUS_COMMIT (commit)
12
13Those revisions listed above that are new to this repository have
14not appeared on any other notification email; so we list those
15revisions in full, below.
16
17Check console output at $BUILD_URL to view the results.'''
18
19node ('master'){
20        stage 'Build'
21        //clean the repo and checkout the source code
22        checkout scm
23
24        sh 'printenv'
25
26        //configure the conpilation
27        sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'
28
29        //build
30        sh 'make -j 8'
31
32        //send email notification
33
34        def email_subject = email_subject_template
35        def email_body = email_body_template
36        def email_to = 'tdelisle@uwaterloo.ca'
37
38        emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
39 }
Note: See TracBrowser for help on using the repository browser.