This is an automated email from the ASF dual-hosted git repository.
bnolsen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new da783db add catch to allow branch build pipeline to continue even on
os failure
new f425124 Merge pull request #68 from traeak/branch_nofail
da783db is described below
commit da783dbfcceb6128dbd3c135ddff5e2584f57307
Author: Brian Olsen <[email protected]>
AuthorDate: Thu Dec 9 15:05:47 2021 +0000
add catch to allow branch build pipeline to continue even on os failure
---
jenkins/branch/branch_build.pipeline | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/jenkins/branch/branch_build.pipeline
b/jenkins/branch/branch_build.pipeline
index 0c6cef8..1f816f1 100644
--- a/jenkins/branch/branch_build.pipeline
+++ b/jenkins/branch/branch_build.pipeline
@@ -130,7 +130,9 @@ pipeline {
stage('OS Builds') {
steps {
script {
- doParallelBuilds()
+ catchError(buildResult: 'FAILURE',
stageResult: 'FAILURE') {
+ doParallelBuilds()
+ }
}
}
}