Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

samples: use native YAML lists #669

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/on_docker_change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- main
paths:
- '.github/docker/**'
- '.github/workflow/on_docker_change.yml'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'

Expand Down Expand Up @@ -68,4 +69,4 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args:
NRF_VERSION= ${{ steps.revision.outputs.REF_NAME }}
NRF_VERSION=${{ steps.revision.outputs.REF_NAME }}
62 changes: 39 additions & 23 deletions samples/sid_end_device/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,69 +22,85 @@ tests:
- CONFIG_SID_END_DEVICE_PERSISTENT_LINK_MASK=y
- CONFIG_SIDEWALK_FILE_TRANSFER=y
- CONFIG_SIDEWALK_APPLICATION_NAME="hello"
tags: Sidewalk hello
tags:
- Sidewalk
- hello

sample.sidewalk.hello.release:
extra_args:
FILE_SUFFIX=release
extra_args: FILE_SUFFIX=release
extra_configs:
- CONFIG_SID_END_DEVICE_PERSISTENT_LINK_MASK=y
- CONFIG_SIDEWALK_APPLICATION_NAME="hello.release"
tags: Sidewalk hello
tags:
- Sidewalk
- hello

sample.sidewalk.hello.ble_only:
extra_configs:
- CONFIG_SIDEWALK_SUBGHZ_SUPPORT=n
- CONFIG_SIDEWALK_APPLICATION_NAME="hello.ble_only"
tags: Sidewalk hello BLE
tags:
- Sidewalk
- hello
- BLE

sample.sidewalk.hello.ble_only.release:
extra_args:
FILE_SUFFIX=release
extra_args: FILE_SUFFIX=release
extra_configs:
- CONFIG_SIDEWALK_SUBGHZ_SUPPORT=n
- CONFIG_SIDEWALK_APPLICATION_NAME="hello.ble_only.release"
tags: Sidewalk hello BLE
tags:
- Sidewalk
- hello
- BLE

sample.sidewalk.demo:
extra_args:
OVERLAY_CONFIG="overlay-demo.conf"
extra_args: OVERLAY_CONFIG="overlay-demo.conf"
extra_configs:
- CONFIG_SID_END_DEVICE_PERSISTENT_LINK_MASK=y
- CONFIG_SIDEWALK_APPLICATION_NAME="demo"
tags: Sidewalk demo
tags:
- Sidewalk
- demo

sample.sidewalk.demo.ble_only:
platform_allow:
- thingy53/nrf5340/cpuapp
extra_args:
OVERLAY_CONFIG="overlay-demo.conf"
extra_args: OVERLAY_CONFIG="overlay-demo.conf"
extra_configs:
- CONFIG_SIDEWALK_SUBGHZ_SUPPORT=n
- CONFIG_SIDEWALK_APPLICATION_NAME="demo.ble_only"
integration_platforms:
- thingy53/nrf5340/cpuapp
tags: Sidewalk demo BLE
tags:
- Sidewalk
- demo
- BLE

sample.sidewalk.dut:
extra_args:
OVERLAY_CONFIG="overlay-dut.conf"
extra_args: OVERLAY_CONFIG="overlay-dut.conf"
extra_configs:
- CONFIG_SIDEWALK_APPLICATION_NAME="dut"
tags: Sidewalk cli
tags:
- Sidewalk
- cli

sample.sidewalk.dut.ble_only:
extra_args:
OVERLAY_CONFIG="overlay-dut.conf"
extra_args: OVERLAY_CONFIG="overlay-dut.conf"
extra_configs:
- CONFIG_SIDEWALK_SUBGHZ_SUPPORT=n
- CONFIG_SIDEWALK_APPLICATION_NAME="dut.ble_only"
tags: Sidewalk cli BLE
tags:
- Sidewalk
- cli
- BLE

sample.sidewalk.dut.no_secure:
extra_args:
OVERLAY_CONFIG="overlay-dut.conf"
extra_args: OVERLAY_CONFIG="overlay-dut.conf"
extra_configs:
- CONFIG_SIDEWALK_CRYPTO_PSA_KEY_STORAGE=n
- CONFIG_SIDEWALK_APPLICATION_NAME="dut.no_secure"
tags: Sidewalk cli no_secure
tags:
- Sidewalk
- cli
- no_secure