This is an automated email from the ASF dual-hosted git repository.

bneradt 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 4c4fd2a  freebsd: avoid cmake until it's installed in CI (#228)
4c4fd2a is described below

commit 4c4fd2a5d23a6167a43db81ce6b9e5bad3bf556f
Author: Brian Neradt <[email protected]>
AuthorDate: Sat Oct 14 14:22:24 2023 -0500

    freebsd: avoid cmake until it's installed in CI (#228)
    
    We'll install cmake on freebsd shortly, but for now avoid cmake builds
    until that is done.
---
 jenkins/github/freebsd.pipeline | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/jenkins/github/freebsd.pipeline b/jenkins/github/freebsd.pipeline
index 32102c6..52c1020 100644
--- a/jenkins/github/freebsd.pipeline
+++ b/jenkins/github/freebsd.pipeline
@@ -25,7 +25,8 @@ pipeline {
                         set -x
                         set -e
 
-                        if [ -d cmake ]
+                        # Avoid doing cmake builds for freebsd until we 
install cmake on the CI boxes.
+                        if [ false -a -d cmake ]
                         then
                             cmake -B cmake-build-release 
-DBUILD_EXPERIMENTAL_PLUGINS=ON -DCMAKE_INSTALL_PREFIX=/tmp/ats
                             cmake --build cmake-build-release -v

Reply via email to