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 c043034  Paramaterize CMAKE_PRESET for autest builds (#387)
c043034 is described below

commit c04303491a95143228398dd0d22942cba8ce0201
Author: Serris Lew <[email protected]>
AuthorDate: Thu Aug 7 11:59:07 2025 -0700

    Paramaterize CMAKE_PRESET for autest builds (#387)
    
    Co-authored-by: Serris Lew <[email protected]>
---
 jenkins/github/autest.pipeline | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/jenkins/github/autest.pipeline b/jenkins/github/autest.pipeline
index 156fb41..d4131ea 100644
--- a/jenkins/github/autest.pipeline
+++ b/jenkins/github/autest.pipeline
@@ -31,6 +31,10 @@ pipeline {
                                                env.SHARD = 0
                                                env.SHARDCNT = 0
                                        }
+
+                                       if (!env.CMAKE_PRESET) {
+                                               env.CMAKE_PRESET = 
'ci-fedora-autest'
+                                       }
                                }
                        }
                }
@@ -93,7 +97,7 @@ pipeline {
                                                if [ -d cmake ]
                                                then
                                                        echo "Building with 
CMake."
-                                                       cmake -B build --preset 
ci-fedora-autest
+                                                       cmake -B build --preset 
${CMAKE_PRESET}
                                                        cmake --build build -j4 
-v
                                                        cmake --install build
                                                else

Reply via email to