Skip to content

Commit 182294e

Browse files
lyakhkv2019i
authored andcommitted
ci: use the newest Zephyr SDK version 1.0.1
Switch to Zephyr SDK 1.0.1 to keep in sync with zephyr/docker-run.sh Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent e8fafe2 commit 182294e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/zephyr.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -303,24 +303,24 @@ jobs:
303303

304304
# Keep this SDK version identical to the one in
305305
# sof/zephyr/docker-run.sh
306-
- name: Cache Zephyr SDK 1.0.0
306+
- name: Cache Zephyr SDK 1.0.1
307307
id: cache-zephyr-sdk
308308
uses: actions/cache@v4
309309
with:
310-
path: zephyr-sdk-1.0.0_windows-x86_64_gnu.7z
311-
key: ${{ runner.os }}-cache-zephyr-sdk-1-0-0
310+
path: zephyr-sdk-1.0.1_windows-x86_64_gnu.7z
311+
key: ${{ runner.os }}-cache-zephyr-sdk-1-0-1
312312

313313
# Wget is needed by Zephyr SDK setup.cmd installation script
314314
- name: Download wget
315315
if: ${{ steps.cache-wget.outputs.cache-hit != 'true' }}
316316
run: |
317317
curl -L -O http://downloads.sourceforge.net/gnuwin32/wget-1.11.4-1-bin.zip
318318
319-
- name: Download Zephyr SDK 1.0.0
319+
- name: Download Zephyr SDK 1.0.1
320320
if: ${{ steps.cache-zephyr-sdk.outputs.cache-hit != 'true' }}
321321
run: | # yamllint disable-line rule:line-length
322322
curl -L -O `
323-
https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v1.0.0/zephyr-sdk-1.0.0_windows-x86_64_gnu.7z
323+
https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v1.0.1/zephyr-sdk-1.0.1_windows-x86_64_gnu.7z
324324
325325
# Unzips every .zip package to directory matching its name without extension
326326
- name: Unzip downloaded packages
@@ -343,7 +343,7 @@ jobs:
343343
# setup.cmd may not be called in from msys shell as it does not parse
344344
# forward slash script input arguments correctly.
345345
- name: Install Zephyr SDK
346-
run: zephyr-sdk-1.0.0_windows-x86_64_gnu/zephyr-sdk-1.0.0/setup.cmd /t all /h /c
346+
run: zephyr-sdk-1.0.1_windows-x86_64_gnu/zephyr-sdk-1.0.1/setup.cmd /t all /h /c
347347

348348
- name: Setup Python
349349
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)