Skip to content

Commit

Permalink
Remove unsupported
Browse files Browse the repository at this point in the history
  • Loading branch information
lackhole committed Feb 28, 2025
1 parent 95441c9 commit 21ca3c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/cmake-multi-platform-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
os: [windows-latest, windows-2019]
build_type: [Debug, Release]
compiler_version: [14.1, 14.2, 14.3] # VS 2017, 2019, 2022
arch: [x64, x86]
env:
VC_VARS: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat
Expand All @@ -31,7 +30,7 @@ jobs:

- name: Configure CMake
run: |
call "${{ env.VC_VARS }}" ${{ matrix.arch }} -vcvars_ver=${{ matrix.compiler_version }}
call "${{ env.VC_VARS }}" ${{ matrix.arch }}
cmake -B build ^
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ^
-DPREVIEW_TEST=ON
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/cmake-multi-platform-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
os: [windows-latest, windows-2019]
build_type: [Debug]
compiler_version: [14.1, 14.2 14.3] # VS 2017, 2019 2022
arch: [x64]

steps:
- uses: actions/checkout@v4

- name: Configure CMake
run: |
call "${{ env.VC_VARS }}" ${{ matrix.arch }} -vcvars_ver=${{ matrix.compiler_version }}
call "${{ env.VC_VARS }}" ${{ matrix.arch }}
cmake -B build ^
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ^
-DPREVIEW_TEST=ON
Expand Down

0 comments on commit 21ca3c9

Please sign in to comment.