-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate out summary information by triplet (#386)
* Separate out summary information by triplet to account for host triplets and make generating releases easier. Reported as https://twitter.com/Iluinrandir/status/1497132319953543201 * Regenerate messages and format.
- Loading branch information
1 parent
b91477a
commit 725ec98
Showing
7 changed files
with
232 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -221,26 +221,28 @@ namespace vcpkg::msg | |
DECLARE_MSG_ARG(actual, ""); | ||
DECLARE_MSG_ARG(list, ""); | ||
|
||
DECLARE_MSG_ARG(email, "[email protected]"); | ||
DECLARE_MSG_ARG(path, "/foo/bar"); | ||
DECLARE_MSG_ARG(triplet, "x64-windows"); | ||
DECLARE_MSG_ARG(url, "https://github.com/microsoft/vcpkg"); | ||
DECLARE_MSG_ARG(elapsed, "3.532 min"); | ||
DECLARE_MSG_ARG(version, "1.3.8"); | ||
DECLARE_MSG_ARG(package_name, "zlib"); | ||
DECLARE_MSG_ARG(command_name, "install"); | ||
DECLARE_MSG_ARG(actual_version, "1.3.8"); | ||
DECLARE_MSG_ARG(arch, "x64"); | ||
DECLARE_MSG_ARG(build_result, "One of the BuildResultXxx messages (such as BuildResultSucceeded/SUCCEEDED)"); | ||
DECLARE_MSG_ARG(column, "42"); | ||
DECLARE_MSG_ARG(command_line, "vcpkg install zlib"); | ||
DECLARE_MSG_ARG(exit_code, "127"); | ||
DECLARE_MSG_ARG(command_name, "install"); | ||
DECLARE_MSG_ARG(count, "42"); | ||
DECLARE_MSG_ARG(row, "42"); | ||
DECLARE_MSG_ARG(column, "42"); | ||
DECLARE_MSG_ARG(arch, "x64"); | ||
DECLARE_MSG_ARG(system_name, "Darwin"); | ||
DECLARE_MSG_ARG(option, "editable"); | ||
DECLARE_MSG_ARG(elapsed, "3.532 min"); | ||
DECLARE_MSG_ARG(email, "[email protected]"); | ||
DECLARE_MSG_ARG(exit_code, "127"); | ||
DECLARE_MSG_ARG(expected_version, "1.3.8"); | ||
DECLARE_MSG_ARG(actual_version, "1.3.8"); | ||
DECLARE_MSG_ARG(new_scheme, "version"); | ||
DECLARE_MSG_ARG(old_scheme, "version-string"); | ||
DECLARE_MSG_ARG(option, "editable"); | ||
DECLARE_MSG_ARG(package_name, "zlib"); | ||
DECLARE_MSG_ARG(path, "/foo/bar"); | ||
DECLARE_MSG_ARG(row, "42"); | ||
DECLARE_MSG_ARG(spec, "zlib:x64-windows"); | ||
DECLARE_MSG_ARG(system_name, "Darwin"); | ||
DECLARE_MSG_ARG(triplet, "x64-windows"); | ||
DECLARE_MSG_ARG(url, "https://github.com/microsoft/vcpkg"); | ||
DECLARE_MSG_ARG(version, "1.3.8"); | ||
#undef DECLARE_MSG_ARG | ||
|
||
// These are `...` instead of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.