From 3f56bb419c998e01da54667a87e2220de209536e Mon Sep 17 00:00:00 2001 From: Rauhul Varma Date: Sat, 17 May 2025 13:39:52 -0700 Subject: [PATCH 1/3] Pin Zephyr SDK version CI builds using the Zephyr SDK due to an update incompatible with our example app. Before resolving the issue with newer SDKs this PR pins the version of Zephyr used in CI. --- .github/workflows/build-zephyr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-zephyr.yml b/.github/workflows/build-zephyr.yml index 65d6327b..e7d6ac87 100644 --- a/.github/workflows/build-zephyr.yml +++ b/.github/workflows/build-zephyr.yml @@ -30,6 +30,7 @@ jobs: with: app-path: ${{ matrix.example }} toolchains: arm-zephyr-eabi + sdk-version: 0.17.0 - name: Install Swift uses: ./.github/actions/install-swift From 41150aa5b4577cc6aa0e7c4e63fa4ae2466d6c6c Mon Sep 17 00:00:00 2001 From: Rauhul Varma Date: Sat, 17 May 2025 13:50:38 -0700 Subject: [PATCH 2/3] wip --- nrfx-blink-sdk/west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nrfx-blink-sdk/west.yml b/nrfx-blink-sdk/west.yml index e02dd56d..aa2cdc05 100644 --- a/nrfx-blink-sdk/west.yml +++ b/nrfx-blink-sdk/west.yml @@ -9,5 +9,5 @@ manifest: revision: main import: name-allowlist: - - cmsis # required by the ARM port + - cmsis_6 # required by the ARM port - hal_nordic # required by the custom_plank board (Nordic based) From 260a75a6874bbdb9e4473f7345afe51a5c5969a9 Mon Sep 17 00:00:00 2001 From: Rauhul Varma Date: Sat, 17 May 2025 13:54:25 -0700 Subject: [PATCH 3/3] Disable Zephyr in CI --- .github/workflows/build-zephyr.yml | 2 -- nrfx-blink-sdk/west.yml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build-zephyr.yml b/.github/workflows/build-zephyr.yml index e7d6ac87..d8d354a1 100644 --- a/.github/workflows/build-zephyr.yml +++ b/.github/workflows/build-zephyr.yml @@ -3,8 +3,6 @@ name: Zephyr on: push: branches: ["main"] - pull_request: - types: [opened, reopened, synchronize, ready_for_review] jobs: build: diff --git a/nrfx-blink-sdk/west.yml b/nrfx-blink-sdk/west.yml index aa2cdc05..e02dd56d 100644 --- a/nrfx-blink-sdk/west.yml +++ b/nrfx-blink-sdk/west.yml @@ -9,5 +9,5 @@ manifest: revision: main import: name-allowlist: - - cmsis_6 # required by the ARM port + - cmsis # required by the ARM port - hal_nordic # required by the custom_plank board (Nordic based)