From 3db71e4578b10ab4093ce7c80b5222ca39a55c84 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 15 Jun 2026 15:12:12 +0100 Subject: [PATCH 1/2] install libratomic1 before memgraph --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dd154e..fe9e798 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -265,6 +265,8 @@ jobs: - name: Download, install and run Memgraph under WSL shell: wsl-bash {0} # root shell run: | + sudo apt update + sudo apt install -y libatomic1 mkdir ~/memgraph curl -L https://download.memgraph.com/memgraph/v${{ env.MGVERSION }}/ubuntu-24.04/memgraph_${{ env.MGVERSION }}-1_amd64.deb --output ~/memgraph/memgraph.deb dpkg -i ~/memgraph/memgraph.deb From cb63fadd5feb147ea4d5ca385d0e33d3d2cbed09 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 15 Jun 2026 15:31:23 +0100 Subject: [PATCH 2/2] override cmake version --- tests/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 10bdde8..12bb30f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -22,6 +22,7 @@ FetchContent_Declare(googletest ) # For Windows: Prevent overriding the parent project's compiler/linker settings set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) +set(CMAKE_POLICY_VERSION_MINIMUM 3.5) FetchContent_MakeAvailable(googletest) set(TESTS_ROOT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})