From 8129e1879ed408eeb6cb7fd44453b7a6d7ddab4b Mon Sep 17 00:00:00 2001 From: cjee21 <77721854+cjee21@users.noreply.github.com> Date: Wed, 12 Feb 2025 19:50:45 +0800 Subject: [PATCH] Add MSVC2022 builds to GitHub CI --- .github/workflows/ZenLib_Checks.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ZenLib_Checks.yml b/.github/workflows/ZenLib_Checks.yml index a5af046..bd5b6f6 100644 --- a/.github/workflows/ZenLib_Checks.yml +++ b/.github/workflows/ZenLib_Checks.yml @@ -38,3 +38,19 @@ jobs: cd Project/CMake/Build cmake -DBUILD_ZENLIB=1 .. make + + Windows: + runs-on: windows-latest + strategy: + matrix: + architecture: [ Win32, x64, ARM64 ] + fail-fast: false + steps: + - name: Checkout ZenLib + uses: actions/checkout@v4 + with: + path: ZenLib + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v2 + - name: Build + run: msbuild /p:Configuration=Release /p:Platform=${{ matrix.architecture }} ${{ github.workspace }}\ZenLib\Project\MSVC2022\ZenLib_MSVC.sln /verbosity:quiet /warnaserror