Skip to content

Commit 0c0b32e

Browse files
committed
[NXP] docker_img: add nxp-zephyr Docker build check
The `nxp-zephyr` docker image is very different from `nxp` and should be checked too. Signed-off-by: Axel Le Bourhis <axel.lebourhis@nxp.com>
1 parent bb15b9f commit 0c0b32e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/docker_img.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ on:
3333
required: false
3434
type: boolean
3535
default: false
36-
36+
3737
jobs:
3838
build_images_base:
3939
name: Build Docker CHIP Build images - base
@@ -102,6 +102,7 @@ jobs:
102102
# - "-imx"
103103
- "-java"
104104
- "-nxp"
105+
- "-nxp-zephyr"
105106
- "-nrf-platform"
106107
- "-telink"
107108
- "-ti"
@@ -120,7 +121,7 @@ jobs:
120121
run: |
121122
cd integrations/docker/images/stage-2/chip-build${{ matrix.img }}
122123
./build.sh --latest
123-
124+
124125
build_images_stage_3:
125126
needs: [build_images_base, build_images_stage_1, build_images_stage_2]
126127
name: Build Docker CHIP Build images - stage 3

integrations/docker/images/stage-2/chip-build-nxp-zephyr/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ RUN set -x \
1010

1111
WORKDIR /opt/nxp-zephyr
1212
RUN set -x \
13+
&& wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.0/zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz \
14+
&& tar xvf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz \
15+
&& rm -rf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz \
16+
&& zephyr-sdk-0.17.0/setup.sh -t arm-zephyr-eabi \
1317
&& pip3 install --break-system-packages -U --no-cache-dir west \
14-
&& west sdk install -t arm-zephyr-eabi --install-dir /opt/nxp-zephyr --version 0.17.0 \
1518
&& west init zephyrproject -m https://github.com/nxp-zephyr/nxp-zsdk.git --mr nxp-v4.0.0 \
1619
&& cd zephyrproject \
1720
&& west update -o=--depth=1 -n \

0 commit comments

Comments
 (0)