From e354dc3fc7ae42b7ca15683f9dc41d55eebec6f7 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Sat, 20 Jan 2024 09:10:11 -0800 Subject: [PATCH] attempt to fix vcvarsall.bat paths in github actions workflow --- .github/workflows/builds.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index a7d5e296..4c871098 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -11,7 +11,7 @@ jobs: - name: build (vs 2022) shell: cmd run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 + 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 @@ -21,7 +21,7 @@ jobs: - name: build (vs 2019) shell: cmd run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 + 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 @@ -31,7 +31,7 @@ jobs: - name: build (vs 2017) shell: cmd run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 + call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 build raddbg msvc debug build raddbg_from_pdb msvc debug build raddbg_from_dwarf msvc debug