workflows: Upgrade docker container to v0.26.6

This brings in Zephyr SDK 0.16.4 containing toolchain for imx8ulp.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
This commit is contained in:
Daniel Baluta 2023-12-13 15:46:57 +02:00 committed by Kai Vehmanen
parent 3e09f233a4
commit b671eca891
1 changed files with 4 additions and 4 deletions

View File

@ -18,10 +18,10 @@
# use this script with a image other than the one officially tagged
# "latest", simply overwrite the official tag. Example:
#
# docker tag ghcr.io/zephyrproject-rtos/zephyr-build:v0.26.4
# docker tag ghcr.io/zephyrproject-rtos/zephyr-build:v0.26.6
# ghcr.io/zephyrproject-rtos/zephyr-build:latest
#
# "latest" is just a regular tag like "v0.26.4", it may or many not name
# "latest" is just a regular tag like "v0.26.6", it may or many not name
# the most recent image.
#
# To automatically restore the official "latest" tag, just delete it:
@ -54,7 +54,7 @@ main()
run_command()
{
# zephyr-build:v0.26.4 has /opt/toolchains/zephyr-sdk-0.16.1
# zephyr-build:v0.26.6 has /opt/toolchains/zephyr-sdk-0.16.4
# https://hub.docker.com/r/zephyrprojectrtos/zephyr-build/tags
#
# Keep this SDK version identical to the one in
@ -63,7 +63,7 @@ run_command()
--workdir /zep_workspace \
$SOF_DOCKER_RUN \
--env REAL_CC --env http_proxy --env https_proxy \
ghcr.io/zephyrproject-rtos/zephyr-build:v0.26.4 \
ghcr.io/zephyrproject-rtos/zephyr-build:v0.26.6 \
./sof/scripts/sudo-cwd.sh "$@"
}