Skip to content

Commit 16765e6

Browse files
committed
Remove newer versions of msvc.
1 parent 1d69171 commit 16765e6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
strategy:
161161
fail-fast: false
162162
matrix:
163-
os: [2019, 2022, 2025]
163+
os: [2019] # TODO: vcvarsall.bat not working on ", 2022, 2025]"
164164
architecture: [x86, amd64]
165165
options: [
166166
{ dll: "/LD /MD", exe: "/MD" },

test/run-test.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
if "%1" == "2019" (
22
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" %2
33
) else (
4+
@rem "TODO: This seems not to work, it cannot find the vcvarsall.bat"
45
call "C:\Program Files\Microsoft Visual Studio\%1\Community\VC\Auxiliary\Build\vcvarsall.bat" %2
56
)
67
nmake /f Makefile.win32 check clean DLL_CFLAGS=%3 EXE_CFLAGS=%4

0 commit comments

Comments
 (0)