[POC|Invalid] Testing vcpkg without installed MSVC #45514
Annotations
3 errors
Check
All vcpkg.json files must be formatted. To fix this problem, run:
./vcpkg format-manifest ports/*/vcpkg.json
It should make the following changes:```diff
diff --git a/ports/msvc/vcpkg.json b/ports/msvc/vcpkg.json
index 59b6de9..f60cb70 100644
--- a/ports/msvc/vcpkg.json
+++ b/ports/msvc/vcpkg.json
@@ -1,5 +1,5 @@
-{
- "name": "msvc",
- "version": "17.11.5",
- "license": "MIT"
-}
+{
+ "name": "msvc",
+ "version": "17.11.5",
+ "license": "MIT"
+}
diff --git a/ports/vcpkg-cmake/vcpkg.json b/ports/vcpkg-cmake/vcpkg.json
index 0d08796..349832c 100644
--- a/ports/vcpkg-cmake/vcpkg.json
+++ b/ports/vcpkg-cmake/vcpkg.json
@@ -3,7 +3,7 @@
"version-date": "2024-04-23",
"documentation": "https://learn.microsoft.com/vcpkg/maintainers/functions/vcpkg_cmake_configure",
"license": "MIT",
- "dependencies" : [
+ "dependencies": [
"msvc"
]
}
```
|
Check
PRs must add only one version, and must not modify any published versions.
When making any changes to a library, the version or port-version in vcpkg.json must be modified, and the version database updated.
Making the following changes will fix this problem:```diff
error: checked-in files for vcpkg-cmake have changed but the version was not updated
version: 2024-04-23
old SHA: e74aa1e8f93278a8e71372f1fa08c3df420eb840
new SHA: 25b4e2249702e6c5f690c0e2385c881747ae5378
Did you remember to update the version or port version?
Use --overwrite-version to bypass this check
See https://learn.microsoft.com/vcpkg/commands/add-version?WT.mc_id=vcpkg_inproduct_cli#--overwrite-version for more information.
***No files were updated***
```
|
Check
After committing all other changes, the version database must be updated.
This can be done by running the following commands after committing your changes:
git add -u && git commit
git checkout 89f00b3b8611028566a5264afce725cdfdfddbb4 -- versions
./vcpkg x-add-version --all
|