Fix all thruthy errors detected by yamllint: yamllint -f parsable -c .yamllint $( find -regex '.*\.y[a]*ml' ) | \ grep '(truthy)' This only accepts true/false for boolean properties. Seems like python takes all sort of formats: https://github.com/yaml/pyyaml/blob/master/lib/yaml/constructor.py#L224-L235 But the current specs only mention "true" or "false" https://yaml.org/spec/1.2.2/#10212-boolean Which is the standard yamllint config. Excluding codeconv and workflow files, as some are using yes/no instead in the respective documentation. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
19 lines
576 B
YAML
19 lines
576 B
YAML
sample:
|
|
description: Sample with MCUboot built through sysbuild
|
|
name: with mcuboot
|
|
tests:
|
|
sample.application_development.sysbuild.with_mcuboot:
|
|
sysbuild: true
|
|
# Platform allowed is used as twister using sysbuild still lacks proper
|
|
# filtering support, see discussion in #49552.
|
|
platform_allow: reel_board nrf52840dk_nrf52840
|
|
integration_platforms:
|
|
- nrf52840dk_nrf52840
|
|
tags: mcuboot
|
|
harness: console
|
|
harness_config:
|
|
type: multi_line
|
|
regex:
|
|
- "Address of sample(.*)"
|
|
- "Hello sysbuild with mcuboot!(.*)"
|