From 56ec42ab7ba16a64b6e417e4c77441527d087c4c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Tue, 12 Aug 2025 21:10:40 +0300 Subject: [PATCH] ci: Enable tests in the msys2 mingw64+clang configuration (#1618) Instead of disabling tests altogether, pass the -Wno-deprecated option, working around https://github.com/doctest/doctest/issues/900 in a different fashion. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5f5c243b..c9e8f1ec 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -190,7 +190,7 @@ jobs: - sys: mingw64 compiler: clang - extra_cmake_params: -DENABLE_TESTING=OFF # clang currently triggers warnings with doctest + extra_cmake_params: -DCMAKE_CXX_FLAGS=-Wno-deprecated # doctest issue #900 os: windows-2025 - sys: clangarm64 -- 2.47.3