Changeset 1da4ead for Jenkinsfile
- Timestamp:
- May 30, 2016, 4:06:27 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:
- a6b7480
- Parents:
- c78e410
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rc78e410 r1da4ead 11 11 stage 'Build' 12 12 node ('master'){ 13 //configure the conpilation14 13 try { 14 //configure the conpilation 15 //Don't remove outputs for the clean and configure unless errors are present 15 16 sh 'make clean > /dev/null' 16 17 sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure > /dev/null' 17 18 sh 'make -j 8' 18 19 email("SUCCESS", false) 20 21 //something happen, this build is a failure 19 22 } catch (Exception e) { 20 23 email("FAILURE", true)
Note: See TracChangeset
for help on using the changeset viewer.