Changeset 18e4cd0 for Jenkinsfile
- Timestamp:
- Dec 17, 2020, 11:07:58 AM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 9dd31e7
- Parents:
- 39d22ef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r39d22ef r18e4cd0 27 27 28 28 node(Settings.Architecture.node) { 29 BuildDir = pwd tmp: true 30 SrcDir = pwd tmp: false 31 32 Tools.Clean() 33 34 Tools.Checkout() 35 36 build() 37 38 test() 39 40 benchmark() 41 42 build_doc() 43 44 publish() 29 try { 30 BuildDir = pwd tmp: true 31 SrcDir = pwd tmp: false 32 33 Tools.Clean() 34 35 Tools.Checkout() 36 37 build() 38 39 test() 40 41 benchmark() 42 43 build_doc() 44 45 publish() 46 } 47 catch (Exception e) { 48 //Store the result of the build log 49 currentBuild.result = "${Tools.StageName} FAILURE".trim() 50 throw e 51 } 45 52 } 46 53 … … 56 63 //An error has occured, the build log is relevent 57 64 log_needed = true 58 59 //Store the result of the build log60 currentBuild.result = "${Tools.StageName} FAILURE".trim()61 65 62 66 //rethrow error later
Note: See TracChangeset
for help on using the changeset viewer.