Skip to content

Commit

Permalink
fixup! ci: fix windows plugin builds
Browse files Browse the repository at this point in the history
by no longer using an old version of Visual Studio
that is no longer present on windows-latest.
  • Loading branch information
TheSlowGrowth committed Sep 4, 2024
1 parent 7e2b691 commit 4dd1d97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
# builds the plugin on windows
testBuildWindows:
runs-on: windows-latest
env:
WindowsSDKVersion: 10.0.22621.0

steps:
- name: Setup cmake
Expand All @@ -33,7 +35,7 @@ jobs:

- name: Configure
run: |
cmake.exe -G "Visual Studio 17 2022" -A x64,version=10.0.22621.0 -B plugin/build -S plugin
cmake.exe -G "Visual Studio 17 2022" -A x64 -B plugin/build -S plugin
- name: Build
run: |
Expand Down

0 comments on commit 4dd1d97

Please sign in to comment.