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 8666100 centos: use -j4 (#246)
8666100 is described below
commit 8666100ac63874dc238ccd15b55c9ff04702283b
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Oct 18 15:16:51 2023 -0500
centos: use -j4 (#246)
Ninja builds automatically use all the available cores on a box, but
Unix Makefiles builds don't. Add -j4 explicitly.
---
jenkins/github/centos.pipeline | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jenkins/github/centos.pipeline b/jenkins/github/centos.pipeline
index 03e340d..3a7733b 100644
--- a/jenkins/github/centos.pipeline
+++ b/jenkins/github/centos.pipeline
@@ -56,7 +56,7 @@ pipeline {
export PATH=/opt/bin:${PATH}
cmake -B cmake-build-release --preset ci -G "Unix
Makefiles" -DOPENSSL_ROOT_DIR=/opt/openssl-quic
- cmake --build cmake-build-release -v
+ cmake --build cmake-build-release -j4 -v
cmake --install cmake-build-release
pushd cmake-build-release
ctest -j4 --output-on-failure --no-compress-output
-T Test