Skip to content

Commit fb18d68

Browse files
committed
release-windows.yml: changed solution extension to slnx (fixes build)
this is caused by `vs2025` now using Visual Studio 2026
1 parent 23d7cf4 commit fb18d68

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
cd pcre-%PCRE_VERSION% || exit /b !errorlevel!
5151
git apply --ignore-space-change ..\externals\pcre.patch || exit /b !errorlevel!
5252
cmake . -A x64 -DPCRE_BUILD_PCRECPP=OFF -DPCRE_BUILD_PCREGREP=OFF -DPCRE_BUILD_TESTS=OFF -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DCMAKE_COMPILE_WARNING_AS_ERROR=On || exit /b !errorlevel!
53-
msbuild -m PCRE.sln -p:Configuration=Release -p:Platform=x64 || exit /b !errorlevel!
53+
msbuild -m PCRE.slnx -p:Configuration=Release -p:Platform=x64 || exit /b !errorlevel!
5454
copy pcre.h ..\externals || exit /b !errorlevel!
5555
copy Release\pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel!
5656
@@ -99,7 +99,7 @@ jobs:
9999

100100
# TODO: build with multiple threads
101101
- name: Build CLI x64 release configuration using MSBuild
102-
run: msbuild -m cppcheck.sln -t:cli -p:Configuration=Release-PCRE -p:Platform=x64 -p:HaveBoost=HAVE_BOOST -p:BoostInclude=%GITHUB_WORKSPACE%\boost || exit /b !errorlevel!
102+
run: msbuild -m cppcheck.slnx -t:cli -p:Configuration=Release-PCRE -p:Platform=x64 -p:HaveBoost=HAVE_BOOST -p:BoostInclude=%GITHUB_WORKSPACE%\boost || exit /b !errorlevel!
103103
env:
104104
_CL_: /WX
105105

0 commit comments

Comments
 (0)