Skip to content

Commit 8b67789

Browse files
committed
ci: bump zephyr-lite version to v0.29.0 across workflows
Bump zephyr-lite version to v0.29.0 across workflows Signed-off-by: Mateusz Redzynia <mateuszx.redzynia@intel.com>
1 parent 6ca8235 commit 8b67789

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/llext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build:
1616
runs-on: ubuntu-22.04
1717
container:
18-
image: thesofproject/zephyr-lite:v0.28.4
18+
image: thesofproject/zephyr-lite:v0.29.0
1919

2020
strategy:
2121
fail-fast: false

.github/workflows/sparse-zephyr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# this in sync with it.
2727
runs-on: ubuntu-24.04
2828
container:
29-
image: thesofproject/zephyr-lite:v0.28.4
29+
image: thesofproject/zephyr-lite:v0.29.0
3030

3131
strategy:
3232
fail-fast: false

.github/workflows/zephyr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
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:
@@ -71,7 +71,7 @@ jobs:
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

zephyr/docker-run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ main()
5454

5555
run_command()
5656
{
57-
# zephyr-lite:v0.28.4 has /opt/toolchains/zephyr-sdk-0.17.4
58-
# zephyr-lite:v0.28.4 is based on zephyr-build:v0.28.4
57+
# zephyr-lite:v0.29.0 has /opt/toolchains/zephyr-sdk-1.0.0
58+
# zephyr-lite:v0.29.0 is based on zephyr-build:v0.29.0
5959
# https://hub.docker.com/r/zephyrprojectrtos/zephyr-build/tags
6060
# https://hub.docker.com/r/thesofproject/zephyr-lite/tags
6161
#
@@ -65,7 +65,7 @@ run_command()
6565
--workdir /zep_workspace \
6666
$SOF_DOCKER_RUN \
6767
--env REAL_CC --env http_proxy --env https_proxy \
68-
thesofproject/zephyr-lite:v0.28.4 \
68+
thesofproject/zephyr-lite:v0.29.0 \
6969
./sof/scripts/sudo-cwd.sh "$@"
7070
}
7171

0 commit comments

Comments
 (0)