-
-
Notifications
You must be signed in to change notification settings - Fork 404
Add first set of profile
commands
#2917
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
Draft
MatteoPologruto
wants to merge
7
commits into
arduino:master
Choose a base branch
from
MatteoPologruto:add-profiles-command-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Add first set of profile
commands
#2917
MatteoPologruto
wants to merge
7
commits into
arduino:master
from
MatteoPologruto:add-profiles-command-support
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
3 tasks
profile
commandprofile
commands
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2917 +/- ##
==========================================
+ Coverage 67.83% 67.95% +0.12%
==========================================
Files 238 246 +8
Lines 22442 22794 +352
==========================================
+ Hits 15223 15490 +267
- Misses 6016 6079 +63
- Partials 1203 1225 +22
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
It creates a `sketch.yaml` file at the provided path. A new profile can be added to the file by providing a profile name and FQBN.
ab96ed6
to
8a41c13
Compare
It adds one or multiple libraries to the specified profile.
8a41c13
to
d3d7a59
Compare
It removes a library from the specified profile.
67c9a2c
to
f98bf7d
Compare
If the project file contains only one profile, it is automatically set as default, otherwise the `--default` flag can be used. Library operations are automatically executed on the default profile.
Sets the default profile to the provided existing profile.
896841b
to
a2c86ef
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Please check if the PR fulfills these requirements
See how to contribute
before creating one)
our contributing guidelines
UPGRADING.md
has been updated with a migration guide (for breaking changes)configuration.schema.json
updated if new parameters are added.What kind of change does this PR introduce?
Code enhancement
What is the current behavior?
Operations on the
sketch.yaml
project file must be done manually.What is the new behavior?
First set of
profile
commands:profile init [<PATH>] [-m <PROFILE_NAME -b <FQBN>]
creates asketch.yaml
file at the provided path. By default it creates the file in the current directory. A new profile can be added to the file by providing a profile name and FQBN (mandatory). The platform is detected automatically. It fails in the following cases:Does this PR introduce a breaking change, and is titled accordingly?
Other information