From 8f41b6a13918968476b9b2e917798daca3394352 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Tue, 29 Nov 2022 18:29:46 +0100 Subject: [PATCH] CI: fix msvc build The Windows image for some reason now contains a zlib and freetype build which meson finds and tries to use. Force meson to use the subprojects always to avoid picking up system libs. --- .github/workflows/msvc-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/msvc-ci.yml b/.github/workflows/msvc-ci.yml index 57aef04cb..79be9f63b 100644 --- a/.github/workflows/msvc-ci.yml +++ b/.github/workflows/msvc-ci.yml @@ -14,6 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [windows-2019, windows-latest] include: @@ -45,7 +46,7 @@ jobs: $env:path = ($env:path.Split(';') | Where-Object { $_ -ne 'C:\Strawberry\perl\bin' }) -join ';' meson setup build ` - --wrap-mode=default ` + --wrap-mode=forcefallback ` --buildtype=release ` -Dglib=enabled ` -Dfreetype=enabled `