diff options
author | Maureen Helm <maureen.helm@nxp.com> | 2021-02-16 08:59:53 -0600 |
---|---|---|
committer | Maureen Helm <maureen.helm@nxp.com> | 2021-02-16 09:01:05 -0600 |
commit | 56a36899bdb472d5c2003164079bedeba42fa24d (patch) | |
tree | b037af2e4f077e58013947a1b575360758ae8085 | |
parent | f573e73baeddfb8fde59413e8053b538cf908f9b (diff) |
tools/ci.sh: Update zephyr docker image to v0.11.13.
Updates the zephyr docker image to the latest, v0.11.13. This updates CI
to use zephyr SDK v0.12.2 and GCC v10.2.0 for the zephyr port.
Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
-rwxr-xr-x | tools/ci.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 616e78f19..5e0686f30 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -455,14 +455,14 @@ function ci_windows_build { # ports/zephyr function ci_zephyr_setup { - docker pull zephyrprojectrtos/ci:v0.11.8 + docker pull zephyrprojectrtos/ci:v0.11.13 docker run --name zephyr-ci -d -it \ -v "$(pwd)":/micropython \ - -e ZEPHYR_SDK_INSTALL_DIR=/opt/sdk/zephyr-sdk-0.11.3 \ + -e ZEPHYR_SDK_INSTALL_DIR=/opt/sdk/zephyr-sdk-0.12.2 \ -e ZEPHYR_TOOLCHAIN_VARIANT=zephyr \ -e ZEPHYR_BASE=/zephyrproject/zephyr \ -w /micropython/ports/zephyr \ - zephyrprojectrtos/ci:v0.11.8 + zephyrprojectrtos/ci:v0.11.13 docker ps -a } |