-
Notifications
You must be signed in to change notification settings - Fork 178
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 tag to be used in mbed import #873
Conversation
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.
The change seems fine to me. I'd like to double check this with @screamerbg to ensure there isn't something that's being missed by not having this check.
Also as note, this affects what We tested this locally and this is the behavior that we saw, so that behavior still seems to be preserved! |
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 did a bit more testing, and there is a change that this introduces. This allows existing .lib
files in programs to be able to specify branches and tags instead of just commits, which is a change in behavior. I'd say this behavior change is outside the scope of this PR.
The existing behavior with the error was removed in this PR, so perhaps the error can just be moved to when reading .lib
files?
Thanks for additional testing 👍. This is a generic change which allows the user to provide tags/branches across. if the user wants to point a .lib to a branch/tag he/she should have the flexibility to do so on the same lines of I also thought of "reproducible build" part but all the bets are off when we allow |
What is the blinky-5-12-rc2 here? I would expect to only have to specify one tag ? |
blinky-5-12-rc2 is optional positional arguments specifying the destination name where we want to import the project.
|
The behavior of what .libs can have is not documented alteast https://os.mbed.com/docs/mbed-os/v5.11/tools/working-with-mbed-cli.html or in the help text. Some background can be found in #224 thanks @bridadan for providing the issue. |
@bridadan have made suggested changes can you re-review. if a named branch is added in .lib it will error. Its inline with current behavior have made the error message more verbose than before.
|
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'm happy with the change. Please see small comment about upper case error message.
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.
Please see @bridadan's comment about existing libraries/projects.
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.
Changes look good to me! Thanks for addressing my comments.
## Fixes * ARMmbed#870 Use input() instead of raw_input() for py3 * ARMmbed#874 Add decode call to icetea application list output ## New features * ARMmbed#873 allow tag to be used in mbed import
Fix for IOTCORE-1104
Branching strategy is changing starting 5.12 for example.
mbed import
currently doesn't allow the user to specify branches/tags. There was a check which explicitly restricting to import tags other thanlatest
ortip
maybe there is some limitation.This change will have minimal impact on user workflow they can continue using the same command
mbed import https://github.com/ARMmbed/mbed-os-example-blinky#mbed-os-5.12 blinky-5-12 -vvv
mbed import https://github.com/ARMmbed/mbed-os-example-blinky#mbed-os-5.12.0-rc2 blinky-5-12-rc2 -vvv
@screamerbg can you please review it.
cc @theotherjimmy @bridadan @SenRamakri