From 51cceb7c584ec521a38e1e09e23e988ac2bcf92e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 20 Aug 2024 09:53:52 +0200 Subject: [PATCH] =?UTF-8?q?[CI]=20Run=20the=20Windows=20CI=C2=A0using=20al?= =?UTF-8?q?l=20native=20config=20(static,=20dyn,=20mixed)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75db2da..069a210 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,10 +9,15 @@ jobs: Windows: strategy: fail-fast: false + matrix: + config: + - native_mixed + - native_dyn + - native_static runs-on: windows-latest env: OS_NAME: windows - COMPILE_CONFIG: native_mixed + COMPILE_CONFIG: ${{matrix.config}} HOME: 'C:\\Users\\runneradmin' steps: - name: Checkout code