From f1b781e99df89d8b9650eb56c54448257277b117 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Mon, 10 Jun 2024 13:18:56 +0930 Subject: [PATCH] Build mingw-32 in CI with fontconfig disabled This gives us one build in CI that has FreeType enabled and Fontconfig disabled in order to ensure this combination builds. Building the Fontconfig backend with Mingw is still checked in the mingw-64 build. --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0ff91612d..0202fad0a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -271,7 +271,8 @@ mingw-32 build: script: - mkdir builddir - cd builddir - - mingw32-meson --default-library=both + # Test building with FreeType enabled and Fontconfig disabled + - mingw32-meson --default-library=both -Dfontconfig=disabled - ninja install artifacts: expire_in: "7 days"