Changeset 41cde266 for Jenkinsfile
- Timestamp:
- Dec 17, 2020, 4:18:23 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 089b1a9a, f4f79dd
- Parents:
- c5a98f3 (diff), 68a867ee (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
-
Jenkinsfile
rc5a98f3 r41cde266 54 54 //attach the build log to the email 55 55 catch (Exception caughtError) { 56 //rethrow error later 56 // Store the result of the build log 57 currentBuild.result = "FAILURE" 58 59 // An error has occured, the build log is relevent 60 log_needed = true 61 62 // rethrow error later 57 63 err = caughtError 58 64 65 // print the error so it shows in the log 59 66 echo err.toString() 60 61 //An error has occured, the build log is relevent62 log_needed = true63 64 //Store the result of the build log65 currentBuild.result = "${tools.StageName} FAILURE".trim()66 67 } 67 68
Note:
See TracChangeset
for help on using the changeset viewer.