From bfd4b20fe3a0c1a8e6c1d6a43b9faf3e3eb8685a Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Thu, 20 Jul 2023 10:29:26 +0200 Subject: [PATCH] ci: disable introspection with msys2 builds Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dbb9cd0c28..60f7b6fc22 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -517,7 +517,7 @@ build msys2: # Replace backslashes with forward so bash doesn't complain - $env:CI_PROJECT_DIR = $env:CI_PROJECT_DIR.replace('\','/') # Windows Graphics Capture currently requires Visual Studio - - $env:MESON_ARGS = $env:MESON_ARGS.replace('-Dgst-plugins-bad:d3d11-wgc=enabled','') + - $env:MESON_ARGS = $env:MESON_ARGS.replace('-Dgst-plugins-bad:d3d11-wgc=enabled','') + ' -Dpython=disabled -Dintrospection=disabled' # Configure MSYS2 to use the UCRT64 environment, start in the same directory # and inherit PATH - C:\msys64\msys2_shell.cmd -ucrt64 -defterm -no-start -here -use-full-path -lc "meson setup build $env:MESON_ARGS && meson compile -C build"