From cac72f54ee560dd3fd62b2cc99d7ce396ef22dd8 Mon Sep 17 00:00:00 2001 From: Vasily Nemkov Date: Tue, 5 Dec 2023 09:47:52 +0100 Subject: [PATCH] CHECK_VERSION=OFF for windows_mingw.yml --- .github/workflows/windows_mingw.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows_mingw.yml b/.github/workflows/windows_mingw.yml index 92d0b780..5681c7c4 100644 --- a/.github/workflows/windows_mingw.yml +++ b/.github/workflows/windows_mingw.yml @@ -73,8 +73,9 @@ jobs: tar - name: Configure CMake - run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_TESTS=ON + run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_TESTS=ON -DCHECK_VERSION=OFF # -DWITH_OPENSSL=ON was not able to make it work (some strange issues with CA paths, need debug) + # -DCHECK_VERSION=OFF since it requires git, which can't be found from within cmake for some reason. - name: Build run: cmake --build build --config ${{env.BUILD_TYPE}} --target all