From 3af9168d032c6f9c28418ad333690e88239e9f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Tue, 18 Oct 2022 18:49:18 +0200 Subject: [PATCH] Add 32-bits Visual Studio builds to the CI --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3437a41..67755604 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,10 @@ jobs: fail-fast: false matrix: platform: - - { name: Windows VS2019, os: windows-2019 } - - { name: Windows VS2022, os: windows-2022 } + - { name: Windows VS2019 x86, os: windows-2019, flags: -A Win32 } + - { name: Windows VS2019 x64, os: windows-2019, flags: -A x64 } + - { name: Windows VS2022 x86, os: windows-2022, flags: -A Win32 } + - { name: Windows VS2022 x64, os: windows-2022, flags: -A x64 } - { name: Windows VS2022 Clang, os: windows-2022, flags: -T ClangCL } - { name: Linux GCC, os: ubuntu-latest } - { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++, gcovr_options: '--gcov-executable="llvm-cov-$CLANG_VERSION gcov"' }