We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d69171 commit 16765e6Copy full SHA for 16765e6
.github/workflows/run-tests.yml
@@ -160,7 +160,7 @@ jobs:
160
strategy:
161
fail-fast: false
162
matrix:
163
- os: [2019, 2022, 2025]
+ os: [2019] # TODO: vcvarsall.bat not working on ", 2022, 2025]"
164
architecture: [x86, amd64]
165
options: [
166
{ dll: "/LD /MD", exe: "/MD" },
test/run-test.bat
@@ -1,6 +1,7 @@
1
if "%1" == "2019" (
2
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" %2
3
) else (
4
+ @rem "TODO: This seems not to work, it cannot find the vcvarsall.bat"
5
call "C:\Program Files\Microsoft Visual Studio\%1\Community\VC\Auxiliary\Build\vcvarsall.bat" %2
6
)
7
nmake /f Makefile.win32 check clean DLL_CFLAGS=%3 EXE_CFLAGS=%4
0 commit comments