Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 31a5d09

Browse files
committedJan 9, 2025
samples: use native YAML lists in twister config
Remove deprecated support for space-separated lists. Automated using `$ZEPHYR/scripts/utils/twister_to_list.py`. Signed-off-by: Eduardo Montoya <eduardo.montoya@nordicsemi.no>
1 parent f45fc2a commit 31a5d09

File tree

6 files changed

+84
-25
lines changed

6 files changed

+84
-25
lines changed
 

‎samples/light_bulb/sample.yaml

+22-7
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,31 @@ tests:
88
integration_platforms:
99
- nrf54l15dk/nrf54l15/cpuapp
1010
- nrf54l15dk/nrf54l10/cpuapp
11-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
12-
tags: ci_build smoke sysbuild ci_samples_zigbee
11+
platform_allow:
12+
- nrf54l15dk/nrf54l15/cpuapp
13+
- nrf54l15dk/nrf54l10/cpuapp
14+
tags:
15+
- ci_build
16+
- smoke
17+
- sysbuild
18+
- ci_samples_zigbee
1319
sample.zigbee.light_bulb.with_shell:
1420
sysbuild: true
1521
build_only: true
16-
extra_args: >
17-
CONFIG_ZIGBEE_SHELL=y CONFIG_ZIGBEE_SHELL_DEBUG_CMD=y CONFIG_ZIGBEE_LOGGER_EP=n
18-
CONFIG_ZIGBEE_SHELL_ENDPOINT=10 CONFIG_LOG_MODE_DEFERRED=y
22+
extra_args:
23+
- CONFIG_ZIGBEE_SHELL=y
24+
- CONFIG_ZIGBEE_SHELL_DEBUG_CMD=y
25+
- CONFIG_ZIGBEE_LOGGER_EP=n
26+
- CONFIG_ZIGBEE_SHELL_ENDPOINT=10
27+
- CONFIG_LOG_MODE_DEFERRED=y
1928
integration_platforms:
2029
- nrf54l15dk/nrf54l15/cpuapp
2130
- nrf54l15dk/nrf54l10/cpuapp
22-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
23-
tags: ci_build shell sysbuild ci_samples_zigbee
31+
platform_allow:
32+
- nrf54l15dk/nrf54l15/cpuapp
33+
- nrf54l15dk/nrf54l10/cpuapp
34+
tags:
35+
- ci_build
36+
- shell
37+
- sysbuild
38+
- ci_samples_zigbee

‎samples/light_switch/sample.yaml

+29-9
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,45 @@ tests:
88
integration_platforms:
99
- nrf54l15dk/nrf54l15/cpuapp
1010
- nrf54l15dk/nrf54l10/cpuapp
11-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
12-
tags: ci_build smoke sysbuild ci_samples_zigbee
11+
platform_allow:
12+
- nrf54l15dk/nrf54l15/cpuapp
13+
- nrf54l15dk/nrf54l10/cpuapp
14+
tags:
15+
- ci_build
16+
- smoke
17+
- sysbuild
18+
- ci_samples_zigbee
1319
sample.zigbee.light_switch.multiprotocol:
1420
sysbuild: true
1521
build_only: true
1622
extra_args: OVERLAY_CONFIG=overlay-multiprotocol_ble.conf
1723
integration_platforms:
1824
- nrf54l15dk/nrf54l15/cpuapp
1925
- nrf54l15dk/nrf54l10/cpuapp
20-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
21-
tags: ci_build sysbuild ci_samples_zigbee
26+
platform_allow:
27+
- nrf54l15dk/nrf54l15/cpuapp
28+
- nrf54l15dk/nrf54l10/cpuapp
29+
tags:
30+
- ci_build
31+
- sysbuild
32+
- ci_samples_zigbee
2233
sample.zigbee.light_switch.with_shell:
2334
sysbuild: true
2435
build_only: true
25-
extra_args: >
26-
CONFIG_ZIGBEE_SHELL=y CONFIG_ZIGBEE_SHELL_DEBUG_CMD=y CONFIG_ZIGBEE_LOGGER_EP=n
27-
CONFIG_ZIGBEE_SHELL_ENDPOINT=1 CONFIG_LOG_MODE_DEFERRED=y
36+
extra_args:
37+
- CONFIG_ZIGBEE_SHELL=y
38+
- CONFIG_ZIGBEE_SHELL_DEBUG_CMD=y
39+
- CONFIG_ZIGBEE_LOGGER_EP=n
40+
- CONFIG_ZIGBEE_SHELL_ENDPOINT=1
41+
- CONFIG_LOG_MODE_DEFERRED=y
2842
integration_platforms:
2943
- nrf54l15dk/nrf54l15/cpuapp
3044
- nrf54l15dk/nrf54l10/cpuapp
31-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
32-
tags: ci_build shell sysbuild ci_samples_zigbee
45+
platform_allow:
46+
- nrf54l15dk/nrf54l15/cpuapp
47+
- nrf54l15dk/nrf54l10/cpuapp
48+
tags:
49+
- ci_build
50+
- shell
51+
- sysbuild
52+
- ci_samples_zigbee

‎samples/ncp/sample.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ tests:
99
- nrf54l15dk/nrf54l15/cpuapp
1010
- nrf54l15dk/nrf54l10/cpuapp
1111
- nrf54l15dk/nrf54l05/cpuapp
12-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
13-
nrf54l15dk/nrf54l05/cpuapp
14-
tags: ci_build smoke sysbuild ci_samples_zigbee
12+
platform_allow:
13+
- nrf54l15dk/nrf54l15/cpuapp
14+
- nrf54l15dk/nrf54l10/cpuapp
15+
- nrf54l15dk/nrf54l05/cpuapp
16+
tags:
17+
- ci_build
18+
- smoke
19+
- sysbuild
20+
- ci_samples_zigbee

‎samples/network_coordinator/sample.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,11 @@ tests:
88
integration_platforms:
99
- nrf54l15dk/nrf54l15/cpuapp
1010
- nrf54l15dk/nrf54l10/cpuapp
11-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
12-
tags: ci_build smoke sysbuild ci_samples_zigbee
11+
platform_allow:
12+
- nrf54l15dk/nrf54l15/cpuapp
13+
- nrf54l15dk/nrf54l10/cpuapp
14+
tags:
15+
- ci_build
16+
- smoke
17+
- sysbuild
18+
- ci_samples_zigbee

‎samples/shell/sample.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,11 @@ tests:
88
integration_platforms:
99
- nrf54l15dk/nrf54l15/cpuapp
1010
- nrf54l15dk/nrf54l10/cpuapp
11-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
12-
tags: ci_build shell sysbuild ci_samples_zigbee
11+
platform_allow:
12+
- nrf54l15dk/nrf54l15/cpuapp
13+
- nrf54l15dk/nrf54l10/cpuapp
14+
tags:
15+
- ci_build
16+
- shell
17+
- sysbuild
18+
- ci_samples_zigbee

‎samples/template/sample.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,11 @@ tests:
88
integration_platforms:
99
- nrf54l15dk/nrf54l15/cpuapp
1010
- nrf54l15dk/nrf54l10/cpuapp
11-
platform_allow: nrf54l15dk/nrf54l15/cpuapp nrf54l15dk/nrf54l10/cpuapp
12-
tags: ci_build smoke sysbuild ci_samples_zigbee
11+
platform_allow:
12+
- nrf54l15dk/nrf54l15/cpuapp
13+
- nrf54l15dk/nrf54l10/cpuapp
14+
tags:
15+
- ci_build
16+
- smoke
17+
- sysbuild
18+
- ci_samples_zigbee

0 commit comments

Comments
 (0)
Please sign in to comment.