Skip to content

Commit f627a2a

Browse files
authored
Update to 0.17.0
* Update GHA to use 0.17.0 SDK Signed-off-by: Jonathan Beri <[email protected]> * Update default to 0.17.0 Signed-off-by: Jonathan Beri <[email protected]> --------- Signed-off-by: Jonathan Beri <[email protected]>
1 parent 4e39d41 commit f627a2a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
sdk: [0.16.9]
19+
sdk: [0.17.0]
2020

2121
steps:
2222
- name: Checkout repository
@@ -58,7 +58,7 @@ jobs:
5858

5959
strategy:
6060
matrix:
61-
sdk: [0.16.9]
61+
sdk: [0.17.0]
6262
toolchain: [
6363
{ arch: "aarch64-zephyr-elf", nick: "aarch64"},
6464
{ arch: "arc64-zephyr-elf", nick: "arc64"},
@@ -130,7 +130,7 @@ jobs:
130130

131131
strategy:
132132
matrix:
133-
sdk: [0.16.9]
133+
sdk: [0.17.0]
134134

135135
steps:
136136
- name: Checkout repository

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ Building images locally ensures you can trust the source of the image, as well a
1515
_Build the base image_
1616

1717
```
18-
docker build --build-arg ZEPHYR_SDK_VERSION=0.16.4 -f "./zephyr-base/Dockerfile" -t zephyr:base-0.16.4SDK "./zephyr-base"
18+
docker build --build-arg ZEPHYR_SDK_VERSION=0.17.0 -f "./zephyr-base/Dockerfile" -t zephyr:base-0.17.0SDK "./zephyr-base"
1919
2020
```
2121

2222
_To build an image for Arm Cortex-M targets:_
2323

2424

2525
```
26-
docker build --build-arg BASE_IMAGE="zephyr:base-0.16.4SDK" --build-arg ZEPHYR_SDK_TOOLCHAINS="-t arm-zephyr-eabi" -f "./zephyr/Dockerfile" -t zephyr:arm-0.16.4SDK "./zephyr"
26+
docker build --build-arg BASE_IMAGE="zephyr:base-0.17.0SDK" --build-arg ZEPHYR_SDK_TOOLCHAINS="-t arm-zephyr-eabi" -f "./zephyr/Dockerfile" -t zephyr:arm-0.17.0SDK "./zephyr"
2727
```
2828

2929
_To build an image for multiple toolchains:_
3030

3131
```
32-
docker build --build-arg BASE_IMAGE="zephyr:base-0.16.4SDK" --build-arg ZEPHYR_SDK_TOOLCHAINS="-t arm-zephyr-eabi -t x86_64-zephyr-elf" -f "./zephyr/Dockerfile" -t zephyr:arm_x86-0.16.4SDK "./zephyr"
32+
docker build --build-arg BASE_IMAGE="zephyr:base-0.17.0SDK" --build-arg ZEPHYR_SDK_TOOLCHAINS="-t arm-zephyr-eabi -t x86_64-zephyr-elf" -f "./zephyr/Dockerfile" -t zephyr:arm_x86-0.17.0SDK "./zephyr"
3333
```
3434

3535
_There is a different Dockerfile for Posix target like `native_sim`. To build:_
3636

3737
```
38-
docker build --build-arg BASE_IMAGE="zephyr:base-0.16.4SDK" -f "./zephyr-posix/Dockerfile" -t zephyr:posix-0.16.4SDK "./zephyr-posix"
38+
docker build --build-arg BASE_IMAGE="zephyr:base-0.17.0SDK" -f "./zephyr-posix/Dockerfile" -t zephyr:posix-0.17.0SDK "./zephyr-posix"
3939
```

zephyr-posix/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG ZEPHYR_SDK_VERSION=0.16.4
1+
ARG ZEPHYR_SDK_VERSION=0.17.0
22
ARG ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-${ZEPHYR_SDK_VERSION}
33
ARG BASE_IMAGE="zephyr:base-${ZEPHYR_SDK_VERSION}SDK"
44

zephyr/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG ZEPHYR_SDK_VERSION=0.16.4
1+
ARG ZEPHYR_SDK_VERSION=0.17.0
22
ARG ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-${ZEPHYR_SDK_VERSION}
33
ARG ZEPHYR_SDK_TOOLCHAINS="-t arm-zephyr-eabi"
44
ARG BASE_IMAGE="zephyr:base-${ZEPHYR_SDK_VERSION}SDK"

0 commit comments

Comments
 (0)