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 b10791a Parallelize FreeBSD PR builds (#450)
b10791a is described below
commit b10791acb6f6bf6b1d03c853b50d87f0e62dddb4
Author: Brian Neradt <[email protected]>
AuthorDate: Mon Aug 10 10:57:00 2026 -0500
Parallelize FreeBSD PR builds (#450)
FreeBSD PR builds use the Unix Makefiles generator, so omitting a job
count leaves the full CMake build serial. Clean builds consequently take
roughly 45 minutes.
This patch addresses the delay by using three parallel jobs, matching
the existing FreeBSD branch pipeline and autotools fallback.
---
jenkins/github/freebsd.pipeline | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jenkins/github/freebsd.pipeline b/jenkins/github/freebsd.pipeline
index 755d71a..2ea651f 100644
--- a/jenkins/github/freebsd.pipeline
+++ b/jenkins/github/freebsd.pipeline
@@ -62,7 +62,7 @@ pipeline {
if [ -d cmake ]
then
cmake -B build --preset ci-freebsd
- cmake --build build -v
+ cmake --build build -j3 -v
else
# Pre 10.x branches only support autotools.
autoreconf -fiv