Experiment with sysio-specific vcpkg triplet#351
Draft
huangminghuang wants to merge 14 commits into
Draft
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
This experimental PR checks whether using a Wire Sysio-specific vcpkg triplet avoids collisions with existing GitHub Packages NuGet cache package names such as
bls12-381_x64-linux-release.The current shared triplet name makes vcpkg publish package ids like
<port>_x64-linux-release, which can collide with private package records created by other repositories.What
x64-linux-releasetox64-linux-sysio-release.x64-linux-sysio-releasefor both target and host triplets.Expected Signal
If this works, vcpkg should publish packages under names such as:
instead of colliding with existing
*_x64-linux-releasepackage names.This is only an experiment. The tradeoff is that the cache becomes Sysio-specific and will not share binaries with other repos that use
x64-linux-release.