-
Notifications
You must be signed in to change notification settings - Fork 879
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
Only creates dist package for specified channel on linux #209
Conversation
BUILD.gn
Outdated
if (brave_channel == "") { | ||
_linux_channel = "stable" | ||
} else if (brave_channel == "dev") { | ||
_linux_channel = "unstable" |
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.
other options for brave_channel
are unchanged for linux?
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.
Yep, beta
is used as-is.
nightly
is not supported yet on linux and will be added (brave/brave-browser#461)
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.
can we wrap these things together as I suggested in the other post so brave_channel
is corrected for linux in //brave/build/config.gni ?
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.
Yep, this value and others mentioned in #208 (comment), can be wrapped there.
But I'm not sure we can fetch that values from c++.
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.
I was thinking a public_config with defines or a generated header file?
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.
ok, I'll try!
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.
Moved to //brave//build/config.gni
. PTAL.
Issue brave/brave-browser#396
With brave/brave-browser#459, we can create dist for all three channels.
Submitter Checklist:
git rebase -i
to squash commits (if needed).Test Plan:
yarn create_dist Release --channel=dev
-> brave-browser-dev_XXX.deb`Reviewer Checklist: