CI: disable debug for MSVC
authorChristoph Reiter <reiter.christoph@gmail.com>
Sat, 26 Feb 2022 15:32:15 +0000 (16:32 +0100)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 16 Mar 2022 02:00:30 +0000 (22:00 -0400)
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

index 3e346fdabf94dd967a5acf1c17611c561eb89846..a3ac0a4719a656345f94980d127de82185fd251f 100644 (file)
@@ -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