2121 run :
2222 shell : bash
2323 container :
24- image : thesofproject/zephyr-lite:v0.28.4
24+ image : thesofproject/zephyr-lite:v0.29.0
2525 steps :
2626 - uses : actions/checkout@v4
2727 with :
7171 run :
7272 shell : bash
7373 container :
74- image : thesofproject/zephyr-lite:v0.28.4
74+ image : thesofproject/zephyr-lite:v0.29.0
7575
7676 steps :
7777 - uses : actions/checkout@v4
@@ -102,7 +102,7 @@ jobs:
102102 run :
103103 shell : bash
104104 container :
105- image : thesofproject/zephyr-lite:v0.28.4
105+ image : thesofproject/zephyr-lite:v0.29.0
106106 strategy :
107107 fail-fast : false
108108 matrix :
@@ -285,24 +285,24 @@ jobs:
285285
286286 # Keep this SDK version identical to the one in
287287 # sof/zephyr/docker-run.sh
288- - name : Cache Zephyr SDK 0.17.4
288+ - name : Cache Zephyr SDK 1.0.0
289289 id : cache-zephyr-sdk
290290 uses : actions/cache@v4
291291 with :
292- path : zephyr-sdk-0.17.4_windows-x86_64 .7z
293- key : ${{ runner.os }}-cache-zephyr-sdk-0-17-4
292+ path : zephyr-sdk-1.0.0_windows-x86_64_gnu .7z
293+ key : ${{ runner.os }}-cache-zephyr-sdk-1-0-0
294294
295295 # Wget is needed by Zephyr SDK setup.cmd installation script
296296 - name : Download wget
297297 if : ${{ steps.cache-wget.outputs.cache-hit != 'true' }}
298298 run : |
299299 curl -L -O http://downloads.sourceforge.net/gnuwin32/wget-1.11.4-1-bin.zip
300300
301- - name : Download Zephyr SDK 0.17.4
301+ - name : Download Zephyr SDK 1.0.0
302302 if : ${{ steps.cache-zephyr-sdk.outputs.cache-hit != 'true' }}
303303 run : | # yamllint disable-line rule:line-length
304304 curl -L -O `
305- https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.4 /zephyr-sdk-0.17.4_windows-x86_64 .7z
305+ https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v1.0.0 /zephyr-sdk-1.0.0_windows-x86_64_gnu .7z
306306
307307 # Unzips every .zip package to directory matching its name without extension
308308 - name : Unzip downloaded packages
@@ -325,12 +325,12 @@ jobs:
325325 # setup.cmd may not be called in from msys shell as it does not parse
326326 # forward slash script input arguments correctly.
327327 - name : Install Zephyr SDK
328- run : zephyr-sdk-0.17.4_windows-x86_64 /zephyr-sdk-0.17.4 /setup.cmd /t all /h /c
328+ run : zephyr-sdk-1.0.0_windows-x86_64_gnu /zephyr-sdk-1.0.0 /setup.cmd /t all /h /c
329329
330330 - name : Setup Python
331331 uses : actions/setup-python@v5
332332 with :
333- python-version : ' 3.10 '
333+ python-version : ' 3.12 '
334334
335335 - name : West install
336336 run : pip3 install west
0 commit comments