From ee3f16a4e71a815f65dbfac7522c12af0ee7c124 Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Sun, 29 Jan 2023 17:52:55 -0800 Subject: [PATCH] Switch to windows-2022 runner (#277) --- .github/workflows/github_actions_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github_actions_build.yml b/.github/workflows/github_actions_build.yml index d0c523fe..f5f8976e 100644 --- a/.github/workflows/github_actions_build.yml +++ b/.github/workflows/github_actions_build.yml @@ -26,13 +26,13 @@ jobs: make CLANG=Y demos buildWindows: - runs-on: windows-2019 + runs-on: windows-2022 steps: - uses: actions/checkout@master - name: make run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 + call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 cd wingui nmake UTF8=Y DLL=Y -f Makefile.vc demos cd ..\wincon