-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Use the manifest to treat this an an app
This should allow the action-zephyr-setup to be able to fetch everything. Signed-off-by: David Brown <[email protected]>
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright (c) 2021 Nordic Semiconductor ASA | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Although this normally lives as a module, the local CI uses action-zephyr-setup which wants the | ||
# application to have a manifest. | ||
|
||
manifest: | ||
remotes: | ||
- name: zephyrproject-rtos | ||
url-base: https://github.com/zephyrproject-rtos | ||
|
||
projects: | ||
- name: zephyr | ||
remote: zephyrproject-rtos | ||
revision: main | ||
import: | ||
# By using name-allowlist we can clone only the modules that are | ||
# strictly needed by the application. | ||
name-allowlist: | ||
- cmsis # required by the ARM port | ||
- hal_nordic # required by the custom_plank board (Nordic based) | ||
- hal_stm32 # required by the nucleo_f302r8 board (STM32 based) |