Changeset 63fe9f1d
- Timestamp:
- May 27, 2016, 5:52:23 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:
- 23a14d86
- Parents:
- a3f9946
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
ra3f9946 r63fe9f1d 19 19 node ('master'){ 20 20 stage 'Build' 21 22 sh 'printenv' 23 21 24 //clean the repo and checkout the source code 22 25 checkout scm … … 43 46 Check console output at ${env.BUILD_URL} to view the results.""" 44 47 48 def email_to = 'tdelisle@uwaterloo.ca' 49 45 50 //configure the conpilation 46 51 sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure' … … 50 55 51 56 //send email notification 52 53 def email_subject = email_subject_template54 def email_body = email_body_template55 def email_to = 'tdelisle@uwaterloo.ca'56 57 57 emailext body: email_body, subject: email_subject, to: email_to, attachLog: true 58 58 }
Note: See TracChangeset
for help on using the changeset viewer.