-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add testing with VS2015 and VS2017 compilers. #15257
Conversation
@@ -39,6 +39,10 @@ jobs: | |||
cmake.exe -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DVCPKG_DEVELOPMENT_WARNINGS=ON -DVCPKG_WARNINGS_AS_ERRORS=ON -DVCPKG_BUILD_FUZZING=ON -B build.x86.debug -S toolsrc | |||
ninja.exe -C build.x86.debug | |||
build.x86.debug\vcpkg-test.exe | |||
cmake -G "Visual Studio 16 2019" -A Win32 -T v140 -DBUILD_TESTING=OFF -DVCPKG_DEVELOPMENT_WARNINGS=OFF -DVCPKG_WARNINGS_AS_ERRORS=ON -DVCPKG_BUILD_FUZZING=OFF -B build.x86.vs2015 -S toolsrc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we possibly want to build without warnings as errors in older VS versions, since we will be building with them as errors in the newer version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicole asked for warnings as errors everywhere and it didn't bother me enough to mess with it. I'd prefer to get this validation in and that switch can be changed later when the whole team is in the office to argue about it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There may be warnings in older compilers that don't exist in later versions; I want to make sure we catch those warnings.
Add testing with VS2015 and VS2017 compilers. (microsoft#15257)
* Add testing with VS2015 and VS2017 compilers. * Apply Nicole CRs.
No description provided.