From 8605a073ea9f35fb1dafddad0aaa7b2296e45683 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Mon, 21 Aug 2023 15:23:22 -0300 Subject: [PATCH] ci: Limit parallel linking on Windows CI Linking on Windows can easily run out of memory, and limiting it to a single link operation (i.e. disabling parallelization) should be enough to avoid this problem. --- .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 c985c413fc..89255b25b9 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.64 || goto :error -meson -Ddebug=false -Dmedia-gstreamer=disabled _build || goto :error +meson setup -Dbackend_max_links=1 -Ddebug=false -Dmedia-gstreamer=disabled _build || goto :error ninja -C _build || goto :error goto :EOF -- 2.30.2