Changeset 23a14d86
- Timestamp:
- May 27, 2016, 6:07:37 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 7aebc62
- Parents:
- 63fe9f1d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r63fe9f1d r23a14d86 18 18 19 19 node ('master'){ 20 stage 'Build' 20 //clean the repo and checkout the source code 21 stage 'Stage Checkout' 22 checkout scm 23 sh 'git clean -f' 21 24 22 sh 'printenv' 25 //configure the conpilation 26 stage 'Stage Build' 27 sh 'dfjgh' 28 sh 'make maintainer-clean' 29 sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure' 30 sh 'make -j 8' 23 31 24 //clean the repo and checkout the source code25 checkout scm26 32 27 //Configurations for email format33 stage 'Stage Notify' 28 34 29 35 //Since tokenizer doesn't work, figure stuff out from the environnement variables and command line 36 //Configurations for email format 30 37 def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1] 31 38 … … 48 55 def email_to = 'tdelisle@uwaterloo.ca' 49 56 50 //configure the conpilation51 sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'52 53 //build54 sh 'make -j 8'55 56 57 //send email notification 57 58 emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
Note: See TracChangeset
for help on using the changeset viewer.