zephyr: module.yml: Update to support click-through property#154
zephyr: module.yml: Update to support click-through property#154DhruvaG2000 merged 2 commits intozephyrproject-rtos:nextfrom
click-through property#154Conversation
There was a problem hiding this comment.
Pull request overview
This pull request updates the Zephyr module configuration to support the new click-through property for blobs and corrects the license path references. The changes enable proper handling of Arduino Core API blobs that require license acceptance.
Changes:
- Added
click-through: trueproperty to all 46 Arduino Core API blob entries in the module.yml file - Updated all
license-pathreferences fromblobs/ArduinoCore-API/LICENSEtozephyr/blobs/ArduinoCore-API/LICENSEto match the actual file location - Modified the CI workflow to use
west blobs --auto-acceptflag for automated blob fetching without manual intervention
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| zephyr/module.yml | Adds click-through property and corrects license paths for all 46 blob entries |
| .github/workflows/build.yml | Adds --auto-accept flag to west blobs command for CI automation |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
`click-through` has been added to the blobs properties, so we will support this. We will also update the `license-path` accordingly. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
Add `--auto-accept` option to suppress interactive prompt when fetching blobs. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
click-through property
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
@DhruvaG2000 |
Update to 4.2.0-rc3
click-throughhas been added to the blobs properties,so we will support this.
We will also update the
license-pathaccordingly.I also updated CI script.