From ec7aab1a17ed366eb7f3810086b317b3a4b0a04c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Ga=C5=82at?= Date: Wed, 8 Jan 2025 14:54:28 +0000 Subject: [PATCH 1/2] GHA: fix on_docker_change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add path to trigger fix typo Signed-off-by: Robert Gałat --- .github/workflows/on_docker_change.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/on_docker_change.yml b/.github/workflows/on_docker_change.yml index fe8f7bd4e..17b743f4f 100644 --- a/.github/workflows/on_docker_change.yml +++ b/.github/workflows/on_docker_change.yml @@ -9,6 +9,7 @@ on: - main paths: - '.github/docker/**' + - '.github/workflow/on_docker_change.yml' tags: - 'v[0-9]+.[0-9]+.[0-9]+*' @@ -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 }} From c780d282d6919b417d3f8352bce646f2ebe912e9 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Thu, 2 Jan 2025 13:31:43 +0100 Subject: [PATCH 2/2] samples: use native YAML lists Space-based list support has been removed from upstream Zephyr. Signed-off-by: Gerard Marull-Paretas --- samples/sid_end_device/sample.yaml | 62 +++++++++++++++++++----------- 1 file changed, 39 insertions(+), 23 deletions(-) diff --git a/samples/sid_end_device/sample.yaml b/samples/sid_end_device/sample.yaml index a5fc40231..6c5b23a0b 100644 --- a/samples/sid_end_device/sample.yaml +++ b/samples/sid_end_device/sample.yaml @@ -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