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 dc5454e Update cmake jobs to use ninja (#177)
dc5454e is described below
commit dc5454e8a8da1813bd421a25192714460aa88433
Author: Brian Neradt <[email protected]>
AuthorDate: Fri Jun 16 19:26:11 2023 -0500
Update cmake jobs to use ninja (#177)
---
jenkins/bin/cmake.sh | 2 +-
jenkins/github/cmake.pipeline | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/jenkins/bin/cmake.sh b/jenkins/bin/cmake.sh
index 4c913e8..2f31d46 100755
--- a/jenkins/bin/cmake.sh
+++ b/jenkins/bin/cmake.sh
@@ -24,6 +24,6 @@ cd "${WORKSPACE}/src"
mkdir cmake-build-release
cd cmake-build-release
-cmake -DCMAKE_BUILD_TYPE:STRING=Release -DOPENSSL_ROOT_DIR=/opt/openssl-quic ..
+cmake -GNinja -DCMAKE_BUILD_TYPE:STRING=Release
-DOPENSSL_ROOT_DIR=/opt/openssl-quic ..
cmake --build . -j4 -v
ctest -j4 --output-on-failure --no-compress-output -T Test
diff --git a/jenkins/github/cmake.pipeline b/jenkins/github/cmake.pipeline
index 2d99820..c734156 100644
--- a/jenkins/github/cmake.pipeline
+++ b/jenkins/github/cmake.pipeline
@@ -64,7 +64,7 @@ pipeline {
mkdir cmake-build-release
cd cmake-build-release
- cmake -DCMAKE_BUILD_TYPE:STRING=Release
-DOPENSSL_ROOT_DIR=/opt/openssl-quic ..
+ cmake -GNinja -DCMAKE_BUILD_TYPE:STRING=Release
-DOPENSSL_ROOT_DIR=/opt/openssl-quic ..
cmake --build . -j4 -v
ctest -j4 --output-on-failure --no-compress-output -T
Test
'''