From 2ea0848616f15be4b2cc793154f6847822ed3fa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 17 Jun 2024 09:17:21 +0200 Subject: [PATCH] Add CI for Windows x86 + MSVC --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f62d01c..860818a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -356,12 +356,13 @@ jobs: strategy: fail-fast: false matrix: + arch: [x64, Win32] buildType: [Debug, Release] steps: - uses: actions/checkout@v4 - name: build run: | - cmake -B build -G "Visual Studio 17 2022" + cmake -B build -G "Visual Studio 17 2022" -A ${{matrix.arch}} cmake --build build --config ${{matrix.buildType}} --target qjs_exe cmake --build build --config ${{matrix.buildType}} --target function_source - name: stats