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 80ca58e cmake: -DBUILD_EXPERIMENTAL_PLUGINS=ON (#193)
80ca58e is described below
commit 80ca58ef1dfc85ef592ca2c8726e8cb62d6bc72e
Author: Brian Neradt <[email protected]>
AuthorDate: Thu Jul 13 17:14:59 2023 -0500
cmake: -DBUILD_EXPERIMENTAL_PLUGINS=ON (#193)
Now that this option is added, we might as well add it to our builds.
---
jenkins/bin/cmake.sh | 2 +-
jenkins/github/cmake.pipeline | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/jenkins/bin/cmake.sh b/jenkins/bin/cmake.sh
index b361adb..4bca229 100755
--- a/jenkins/bin/cmake.sh
+++ b/jenkins/bin/cmake.sh
@@ -24,7 +24,7 @@ cd "${WORKSPACE}/src"
mkdir cmake-build-release
cd cmake-build-release
-cmake -GNinja -DCMAKE_BUILD_TYPE:STRING=Release
-DOPENSSL_ROOT_DIR=/opt/openssl-quic -DCMAKE_INSTALL_PREFIX=/tmp/ats ..
+cmake -GNinja -DCMAKE_BUILD_TYPE:STRING=Release
-DBUILD_EXPERIMENTAL_PLUGINS=ON -DOPENSSL_ROOT_DIR=/opt/openssl-quic
-DCMAKE_INSTALL_PREFIX=/tmp/ats ..
cmake --build . -j4 -v
cmake --install .
ctest -j4 --output-on-failure --no-compress-output -T Test
diff --git a/jenkins/github/cmake.pipeline b/jenkins/github/cmake.pipeline
index 77f6b44..e86f7b3 100644
--- a/jenkins/github/cmake.pipeline
+++ b/jenkins/github/cmake.pipeline
@@ -61,7 +61,7 @@ pipeline {
export PATH=/opt/bin:${PATH}
- cmake -B cmake-build-release -GNinja
-DCMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/opt/openssl-quic
-DCMAKE_INSTALL_PREFIX=/tmp/ats
+ cmake -B cmake-build-release -GNinja
-DCMAKE_BUILD_TYPE=Debug -DBUILD_EXPERIMENTAL_PLUGINS=ON
-DOPENSSL_ROOT_DIR=/opt/openssl-quic -DCMAKE_INSTALL_PREFIX=/tmp/ats
cmake --build cmake-build-release -j4 -v
cmake --install cmake-build-release
pushd cmake-build-release
@@ -69,7 +69,7 @@ pipeline {
/tmp/ats/bin/traffic_server -K -k -R 1
popd
- cmake -B cmake-build-quiche -GNinja -DENABLE_QUICHE=ON
-DCMAKE_BUILD_TYPE=Release -Dquiche_ROOT=/opt/quiche
-DOPENSSL_ROOT_DIR=/opt/boringssl -DCMAKE_INSTALL_PREFIX=/tmp/ats_quiche
+ cmake -B cmake-build-quiche -GNinja -DENABLE_QUICHE=ON
-DCMAKE_BUILD_TYPE=Release -DBUILD_EXPERIMENTAL_PLUGINS=ON
-Dquiche_ROOT=/opt/quiche -DOPENSSL_ROOT_DIR=/opt/boringssl
-DCMAKE_INSTALL_PREFIX=/tmp/ats_quiche
cmake --build cmake-build-quiche -j4 -v
cmake --install cmake-build-quiche
pushd cmake-build-quiche