This is an automated email from the ASF dual-hosted git repository.
eze 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 864a201 Update toplevel.pipeline
864a201 is described below
commit 864a2016f9c91fd7046813440b38e23ab607f9e8
Author: Evan Zelkowitz <[email protected]>
AuthorDate: Tue Jul 5 13:07:49 2022 -0600
Update toplevel.pipeline
Add freebsd build
---
jenkins/github/toplevel.pipeline | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/jenkins/github/toplevel.pipeline b/jenkins/github/toplevel.pipeline
index c0660f3..626642b 100644
--- a/jenkins/github/toplevel.pipeline
+++ b/jenkins/github/toplevel.pipeline
@@ -170,22 +170,22 @@ pipeline {
}
}
- //stage('FreeBSD Build') {
- // when {
- // anyOf {
- // environment name:
'GITHUB_PR_COMMENT_BODY_MATCH', value: ''
- // expression { GITHUB_PR_COMMENT_BODY_MATCH ==~
/.*freebsd.*/ }
- // }
- // }
- // steps {
- // script {
- // result = buildJob('FreeBSD',
'Github_Builds/freebsd')
- // if (result == 'FAILURE') {
- // error('FreeBSD build failed')
- // }
- // }
- // }
- //}
+ stage('FreeBSD Build') {
+ when {
+ anyOf {
+ environment name: 'GITHUB_PR_COMMENT_BODY_MATCH',
value: ''
+ expression { GITHUB_PR_COMMENT_BODY_MATCH ==~
/.*freebsd.*/ }
+ }
+ }
+ steps {
+ script {
+ result = buildJob('FreeBSD',
'Github_Builds/freebsd')
+ if (result == 'FAILURE') {
+ error('FreeBSD build failed')
+ }
+ }
+ }
+ }
stage('Clang-Analyzer') {
when {