From 9218c365cfcafc5ef0ae57d702fb32bb40a3bcf7 Mon Sep 17 00:00:00 2001 From: Roberto Rossini <71787608+robomics@users.noreply.github.com> Date: Sun, 28 Jan 2024 16:18:58 +0100 Subject: [PATCH] Compile all build dependencies from scratch in windows CI This is to workaround linking issues with catch2, where symbols for CHECK/REQUIREs comparing std::string_view are missing because a conan binary built under C++14 is being used instead of one built using C++17. --- .github/workflows/windows-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index cad8ae8e..f33ddc3a 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -131,7 +131,7 @@ jobs: - name: Install build dependencies run: | conan install . \ - --build=missing \ + --build="*" \ -pr:h default \ -pr:b default \ -s:h "compiler=${{ matrix.compiler-name }}" \