From 0fd22ff806a92e8fbd18538446ee863911a4fa83 Mon Sep 17 00:00:00 2001 From: Will Sobel Date: Wed, 17 Sep 2025 11:07:12 +0200 Subject: [PATCH 1/2] Fixed docker build by turning off test build for origuruma --- conan/oniguruma/conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conan/oniguruma/conanfile.py b/conan/oniguruma/conanfile.py index bee152d3c..e14b94fe4 100644 --- a/conan/oniguruma/conanfile.py +++ b/conan/oniguruma/conanfile.py @@ -49,6 +49,7 @@ def generate(self): tc = CMakeToolchain(self) tc.variables["ENABLE_POSIX_API"] = self.options.posix_api tc.variables["ENABLE_BINARY_COMPATIBLE_POSIX_API"] = self.options.posix_api + tc.variables["BUILD_TEST"] = False if Version(self.version) >= "6.9.8": tc.variables["INSTALL_DOCUMENTATION"] = False tc.variables["INSTALL_EXAMPLES"] = False From 50f1640237e8b5a203acedcd3f96ad229f299391 Mon Sep 17 00:00:00 2001 From: Will Sobel Date: Wed, 17 Sep 2025 11:59:01 +0200 Subject: [PATCH 2/2] Version 2.6.0.2 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 85d3737ec..29b337cb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ set(AGENT_VERSION_MAJOR 2) set(AGENT_VERSION_MINOR 6) set(AGENT_VERSION_PATCH 0) -set(AGENT_VERSION_BUILD 1) +set(AGENT_VERSION_BUILD 2) set(AGENT_VERSION_RC "") # This minimum version is to support Visual Studio 2019 and C++ feature checking and FetchContent