Changeset e365cb5
- Timestamp:
- Jun 3, 2016, 2:35:28 PM (9 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:
- b8387fc
- Parents:
- 10a7775 (diff), 37bf576 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified Jenkinsfile ¶
r10a7775 re365cb5 8 8 def install_dir = pwd tmp: true 9 9 //checkout the source code and clean the repo 10 sh "rm -rf * ${install_dir}/*"11 10 checkout scm 11 sh 'git clean -fdqx' 12 sh 'git reset --hard' 12 13 13 14 build_stage 'Build' … … 31 32 build_stage 'Cleanup' 32 33 33 // Cleanup the install dir34 sh "rm -rf ${install_dir}/*"34 //do a maintainer-clean to make sure we need to remake from scratch 35 sh 'make maintainer-clean > /dev/null' 35 36 } 36 37 … … 77 78 // timeout(30) { 78 79 // 79 ////Wrap build to add timestamp to command line80 //wrap([$class: 'TimestamperBuildWrapper']) {80 //Wrap build to add timestamp to command line 81 wrap([$class: 'TimestamperBuildWrapper']) { 81 82 82 83 //Compile using gcc-4.9 … … 84 85 cfa_build() 85 86 86 //}87 } 87 88 // } 88 89
Note: See TracChangeset
for help on using the changeset viewer.