From f7e391dd2ff64fe4ede96a6b8863aaac13585aa7 Mon Sep 17 00:00:00 2001 From: scribam Date: Sun, 28 Feb 2021 22:12:33 +0100 Subject: [PATCH] GitHub Actions: Enable i686-pc-windows-msvc build --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 4e45ff5d2..e80a51200 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: config: -# - {name: i686-pc-windows-msvc, os: windows-latest, cmakeArgs: -G "Visual Studio 16 2019" -A Win32} + - {name: i686-pc-windows-msvc, os: windows-latest, cmakeArgs: -DCMAKE_SYSTEM_VERSION="10.0.18362.0" -G "Visual Studio 16 2019" -A Win32} - {name: x86_64-apple-darwin, os: macos-latest, cmakeArgs: -G "Xcode"} - {name: x86_64-pc-linux-gnu, os: ubuntu-latest} - {name: x86_64-pc-windows-msvc, os: windows-latest, cmakeArgs: -DCMAKE_SYSTEM_VERSION="10.0.18362.0" -G "Visual Studio 16 2019" -A x64}