From eaf952d90243b0343c95e63863f1cf8db3e46c5f Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 26 Feb 2022 16:32:15 +0100 Subject: [PATCH] CI: disable debug for MSVC CI currently fails with "fatal error LNK1318: Unexpected PDB error; OK (0) ''" Google tells me it might be related to hitting a memory limit. Let's try disabling debug for now. --- .gitlab-ci/test-msvc.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/test-msvc.bat b/.gitlab-ci/test-msvc.bat index 3e346fdabf..a3ac0a4719 100644 --- a/.gitlab-ci/test-msvc.bat +++ b/.gitlab-ci/test-msvc.bat @@ -6,7 +6,7 @@ call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliar :: FIXME: make warnings fatal pip3 install --upgrade --user meson==0.59 || goto :error -meson -Dmedia-gstreamer=disabled _build || goto :error +meson -Ddebug=false -Dmedia-gstreamer=disabled _build || goto :error ninja -C _build || goto :error goto :EOF