-
Notifications
You must be signed in to change notification settings - Fork 3
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
Allow customizable companion refs #35
Merged
joao-paulo-parity
merged 19 commits into
paritytech:master
from
joao-paulo-parity:customizable
Apr 27, 2022
Merged
Allow customizable companion refs #35
joao-paulo-parity
merged 19 commits into
paritytech:master
from
joao-paulo-parity:customizable
Apr 27, 2022
Conversation
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
joao-paulo-parity
changed the title
Allow customizable companion branches through --companion-overrides
Allow customizable companion refs through --companion-overrides
Apr 25, 2022
joao-paulo-parity
force-pushed
the
customizable
branch
from
April 26, 2022 18:09
a6f3114
to
794e4a4
Compare
joao-paulo-parity
changed the title
Allow customizable companion refs through --companion-overrides
Allow customizable companion refs
Apr 27, 2022
joao-paulo-parity
force-pushed
the
customizable
branch
from
April 27, 2022 01:08
e020a07
to
187df04
Compare
chevdor
approved these changes
Apr 27, 2022
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.
LGTM
alvicsam
approved these changes
Apr 27, 2022
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.
Note: This will require a PR on Substrate after it's merged
The intended usage pattern on CI is provided by
--companion-overrides
from$COMPANION_OVERRIDES
.Use-case of correlating an existing matching branch: https://gitlab.parity.io/parity/mirrors/substrate/-/jobs/1526107#L98
release-v0.9.20
was used for the Polkadot companion because I am targettingpolkadot-v0.9.20
in the PR (notice the version correlation). This required$COMPANION_OVERRIDES
.Use-case of correlated an existing branch by guess: https://gitlab.parity.io/parity/mirrors/substrate/-/jobs/1526106#L124
polkadot-v0.9.19
was used for the Cumulus companion because the script tried to usepolkadot-v0.9.20
(correlated frompolkadot-v0.9.20
which I am targetting in the PR), which doesn't exist, thus it guessed the first. This required$COMPANION_OVERRIDES
.Use-case of overriding the companion branch: https://gitlab.parity.io/parity/mirrors/substrate/-/jobs/1526105#L98
cumulus companion branch: polkadot-v0.9.18
in the pull request's descriptionclose #32