From a541e6d00e8a81208b76804188abcd2d8a44620a Mon Sep 17 00:00:00 2001 From: Sergey Kuznetsov Date: Mon, 9 Oct 2023 15:36:28 +0100 Subject: [PATCH] Update gtest version (#900) --- .github/actions/restore_cache/action.yml | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/restore_cache/action.yml b/.github/actions/restore_cache/action.yml index 04aa7694..d3aa24a2 100644 --- a/.github/actions/restore_cache/action.yml +++ b/.github/actions/restore_cache/action.yml @@ -28,7 +28,7 @@ runs: id: conan_hash shell: bash run: | - conan info . -j info.json + conan info . -j info.json -o clio:tests=True packages_info=$(cat info.json | jq '.[] | "\(.display_name): \(.id)"' | grep -v 'clio') echo "$packages_info" hash=$(echo "$packages_info" | shasum -a 256 | cut -d ' ' -f 1) diff --git a/conanfile.py b/conanfile.py index 75634832..ab0dcfed 100644 --- a/conanfile.py +++ b/conanfile.py @@ -57,7 +57,7 @@ class Clio(ConanFile): def requirements(self): if self.options.tests: - self.requires('gtest/1.13.0') + self.requires('gtest/1.14.0') def configure(self): if self.settings.compiler == 'apple-clang':