This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/update-gtest-dep in repository https://gitbox.apache.org/repos/asf/celix.git
commit 53997122ae4ab8c1365984cbdb97ead691852a56 Author: Pepijn Noltes <[email protected]> AuthorDate: Fri Feb 6 17:12:47 2026 +0000 Update gtest dependency version to v17 --- cmake/AddGTest.cmake | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/AddGTest.cmake b/cmake/AddGTest.cmake index f3533da55..84d48f853 100644 --- a/cmake/AddGTest.cmake +++ b/cmake/AddGTest.cmake @@ -21,6 +21,6 @@ FetchContent_Declare( googletest GIT_REPOSITORY https://github.com/google/googletest.git # GIT_REPOSITORY https://gitee.com/mirrors/googletest.git - GIT_TAG release-1.11.0 + GIT_TAG v1.17.0 ) FetchContent_MakeAvailable(googletest) diff --git a/conanfile.py b/conanfile.py index f5c5c6ecd..eebd0c090 100644 --- a/conanfile.py +++ b/conanfile.py @@ -157,7 +157,7 @@ class CelixConan(ConanFile): def build_requirements(self): if self.options.enable_testing: - self.test_requires("gtest/1.10.0") + self.test_requires("gtest/1.17.0") if self.options.enable_ccache: self.build_requires("ccache/4.7.4") if self.options.enable_benchmarking:
