From f4ec1e2d773b53f440161e42e06d6bf43a235a48 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Sat, 20 Jan 2024 11:59:46 -0800 Subject: [PATCH] i am once again asking my GitHub actions script to call vcvarsall.bat correctly --- .github/workflows/builds.yml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 4c871098..39890c02 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -3,7 +3,7 @@ name: builds on: [push, pull_request] jobs: - build-windows: + build-windows-2022: runs-on: windows-2022 steps: - name: checkout @@ -11,27 +11,7 @@ jobs: - name: build (vs 2022) shell: cmd run: | - call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 - build raddbg msvc debug - build raddbg_from_pdb msvc debug - build raddbg_from_dwarf msvc debug - build raddbg clang debug - build raddbg_from_pdb clang debug - build raddbg_from_dwarf clang debug - - name: build (vs 2019) - shell: cmd - run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 - build raddbg msvc debug - build raddbg_from_pdb msvc debug - build raddbg_from_dwarf msvc debug - build raddbg clang debug - build raddbg_from_pdb clang debug - build raddbg_from_dwarf clang debug - - name: build (vs 2017) - shell: cmd - run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 + call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 build raddbg msvc debug build raddbg_from_pdb msvc debug build raddbg_from_dwarf msvc debug