From 8a86851804ddc20a93f582a4d4f339b0ea9c82ba Mon Sep 17 00:00:00 2001 From: lazymio Date: Tue, 12 Apr 2022 19:26:47 +0200 Subject: [PATCH] Add win32 static CI test --- .github/workflows/build-uc2.yml | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-uc2.yml b/.github/workflows/build-uc2.yml index 46244752..445e8e57 100644 --- a/.github/workflows/build-uc2.yml +++ b/.github/workflows/build-uc2.yml @@ -59,7 +59,8 @@ jobs: python-ver: '3.8', name: 'windows-x64 MSVC 64bit', msvc-arch: x64, - artifact: 'windows_msvc64.7z', + artifact: 'windows_msvc64_shared.7z', + shared: 'yes', build_type: 'Debug', archiver: '7z a', generators: 'Visual Studio 16 2019' @@ -71,7 +72,34 @@ jobs: python-ver: '3.8', name: 'windows-x86 MSVC 32bit', msvc-arch: x86, - artifact: 'windows_msvc32.7z', + artifact: 'windows_msvc32_shared.7z', + shared: 'yes', + build_type: 'Debug', + archiver: '7z a', + generators: 'Visual Studio 16 2019' + } + - { + os: windows-2019, + arch: x64, + python-arch: x64, + python-ver: '3.8', + name: 'windows-x64 MSVC 64bit', + msvc-arch: x64, + artifact: 'windows_msvc64_static.7z', + shared: 'no', + build_type: 'Debug', + archiver: '7z a', + generators: 'Visual Studio 16 2019' + } + - { + os: windows-2019, + arch: x86, + python-arch: x86, + python-ver: '3.8', + name: 'windows-x86 MSVC 32bit', + msvc-arch: x86, + artifact: 'windows_msvc32_static.7z', + shared: 'no', build_type: 'Debug', archiver: '7z a', generators: 'Visual Studio 16 2019'