File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2024 Linaro LTD
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
1
4
name : Build
2
5
3
6
# Build the rust samples and tests using the current Zephyr.
30
33
uses : zephyrproject-rtos/action-zephyr-setup@v1
31
34
with :
32
35
app-path : zephyr-rust-lang
36
+ manifest-file-name : ci-manifest.yml
33
37
toolchains : arm-zephyr-eabi
34
38
# TODO: Also bring in riscv.
35
39
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2021 Nordic Semiconductor ASA
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ # Although this normally lives as a module, the local CI uses action-zephyr-setup which wants the
5
+ # application to have a manifest.
6
+
7
+ manifest :
8
+ remotes :
9
+ - name : zephyrproject-rtos
10
+ url-base : https://github.com/zephyrproject-rtos
11
+
12
+ projects :
13
+ - name : zephyr
14
+ remote : zephyrproject-rtos
15
+ revision : main
16
+ import :
17
+ # By using name-allowlist we can clone only the modules that are
18
+ # strictly needed by the application.
19
+ name-allowlist :
20
+ - cmsis # required by the ARM port
21
+ - hal_nordic # required by the custom_plank board (Nordic based)
22
+ - hal_stm32 # required by the nucleo_f302r8 board (STM32 based)
You can’t perform that action at this time.
0 commit comments