File tree 2 files changed +7
-3
lines changed
integrations/docker/images/stage-2/chip-build-nxp-zephyr
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 33
33
required : false
34
34
type : boolean
35
35
default : false
36
-
36
+
37
37
jobs :
38
38
build_images_base :
39
39
name : Build Docker CHIP Build images - base
@@ -102,6 +102,7 @@ jobs:
102
102
# - "-imx"
103
103
- " -java"
104
104
- " -nxp"
105
+ - " -nxp-zephyr"
105
106
- " -nrf-platform"
106
107
- " -telink"
107
108
- " -ti"
@@ -120,7 +121,7 @@ jobs:
120
121
run : |
121
122
cd integrations/docker/images/stage-2/chip-build${{ matrix.img }}
122
123
./build.sh --latest
123
-
124
+
124
125
build_images_stage_3 :
125
126
needs : [build_images_base, build_images_stage_1, build_images_stage_2]
126
127
name : Build Docker CHIP Build images - stage 3
Original file line number Diff line number Diff line change @@ -10,8 +10,11 @@ RUN set -x \
10
10
11
11
WORKDIR /opt/nxp-zephyr
12
12
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 \
13
17
&& 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 \
15
18
&& west init zephyrproject -m https://github.com/nxp-zephyr/nxp-zsdk.git --mr nxp-v4.0.0 \
16
19
&& cd zephyrproject \
17
20
&& west update -o=--depth=1 -n \
You can’t perform that action at this time.
0 commit comments