From f2ba9968f8643055d6c662feb7f4e0729fdb910d Mon Sep 17 00:00:00 2001 From: Luke Usher Date: Mon, 8 Jul 2024 15:11:57 +0100 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 15a5ea3b2..3edf316ac 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,12 +31,14 @@ jobs: matrix: configuration: [Release, Debug] vsver: [2019] + winver: [7] + sdkver: [10.0.22621] steps: - uses: actions/checkout@v4 with: submodules: recursive - name: Generate CMake files - run: cmake -B build -A Win32 -DCMAKE_SYSTEM_VERSION=10.0.22621.0 + run: cmake -B build -A Win32,version=${{ matrix.sdkver }} -DCMAKE_SYSTEM_VERSION=${{ matrix.winver }} - name: Build run: cmake --build build --config ${{ matrix.configuration }} -j $env:NUMBER_OF_PROCESSORS - name: Prepare artifacts