Changeset 18e2758
- Timestamp:
- Jun 20, 2016, 3:57:04 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:
- b886f90
- Parents:
- fea90c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rfea90c6 r18e2758 46 46 } 47 47 48 def doc_build() { 49 build_stage 'Documentation' 50 51 dir ('doc/user') { 52 sh 'make clean' 53 sh 'make' 54 } 55 56 dir ('doc/refrat') { 57 sh 'make clean' 58 sh 'make' 59 } 60 } 61 48 62 def push_build() { 49 63 //Don't use the build_stage function which outputs the compiler … … 126 140 try { 127 141 //Prevent the build from exceeding 30 minutes 128 timeout( 30) {142 timeout(60) { 129 143 130 144 //Wrap build to add timestamp to command line … … 159 173 cfa_build(doPromoteBuild2DoLang) 160 174 175 //Compile latex documentation 176 doc_build() 177 161 178 if( doPromoteBuild2DoLang ) { 162 179 push_build()
Note: See TracChangeset
for help on using the changeset viewer.