Skip to content

Commit a578c14

Browse files
[NXP][zephyr] Migrate to NXP Zephyr 3.7 downstream release (#35600)
* [NXP][zephyr] Migrate to NXP Zephyr 3.7 downstream release - Kconfig/CMake updates for 3.7 - Optimize some stack sizes to reduce RAM footprint - Optimize net configuration to reduce ram footprint - Doc update - Remove overlays from platform folders - Workflows docker image updated to latest (depends on [NXP] Migrate docker image to NXP Zephyr 3.7 downstream release #35599) - Fixed NXP Zephyr examples build with VS Code image Signed-off-by: Axel Le Bourhis <axel.lebourhis@nxp.com> * Restyled by prettier-markdown * [NXP] Add 'zsdk' to wordlist for spellchecker Signed-off-by: Axel Le Bourhis <axel.lebourhis@nxp.com> * [Crypto] Fix build warning/error related to unused function Signed-off-by: Axel Le Bourhis <axel.lebourhis@nxp.com> * [NXP] Unset ZEPHYR_TOOLCHAIN_VARIANT using the shell commands To be able to track shell commands needed to build an example with `--dry-run`, any environment manipulation shall be done with shell commands and not using Python specific commands. --------- Signed-off-by: Axel Le Bourhis <axel.lebourhis@nxp.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent cc5ea19 commit a578c14

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+354
-237
lines changed

.github/.wordlist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1627,3 +1627,4 @@ zhengyaohan
16271627
Zigbee
16281628
zigbeealliance
16291629
zigbeethread
1630+
zsdk

.github/workflows/bloat_check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535

3636
container:
37-
image: ghcr.io/project-chip/chip-build:76
37+
image: ghcr.io/project-chip/chip-build:77
3838

3939
steps:
4040
- name: Checkout

.github/workflows/build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
if: github.actor != 'restyled-io[bot]'
4343

4444
container:
45-
image: ghcr.io/project-chip/chip-build:76
45+
image: ghcr.io/project-chip/chip-build:77
4646
volumes:
4747
- "/:/runner-root-volume"
4848
- "/tmp/log_output:/tmp/test_logs"
@@ -138,7 +138,7 @@ jobs:
138138
if: github.actor != 'restyled-io[bot]'
139139

140140
container:
141-
image: ghcr.io/project-chip/chip-build:76
141+
image: ghcr.io/project-chip/chip-build:77
142142
volumes:
143143
- "/:/runner-root-volume"
144144
- "/tmp/log_output:/tmp/test_logs"
@@ -283,7 +283,7 @@ jobs:
283283
if: github.actor != 'restyled-io[bot]'
284284

285285
container:
286-
image: ghcr.io/project-chip/chip-build:76
286+
image: ghcr.io/project-chip/chip-build:77
287287
volumes:
288288
- "/:/runner-root-volume"
289289
- "/tmp/log_output:/tmp/test_logs"
@@ -346,7 +346,7 @@ jobs:
346346
if: github.actor != 'restyled-io[bot]'
347347

348348
container:
349-
image: ghcr.io/project-chip/chip-build:76
349+
image: ghcr.io/project-chip/chip-build:77
350350
volumes:
351351
- "/:/runner-root-volume"
352352
- "/tmp/log_output:/tmp/test_logs"
@@ -457,7 +457,7 @@ jobs:
457457
if: github.actor != 'restyled-io[bot]'
458458

459459
container:
460-
image: ghcr.io/project-chip/chip-build:76
460+
image: ghcr.io/project-chip/chip-build:77
461461
volumes:
462462
- "/:/runner-root-volume"
463463
- "/tmp/log_output:/tmp/test_logs"

.github/workflows/chef.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
chef_linux:
3333
name: Chef - Linux CI Examples
3434
runs-on: ubuntu-latest
3535
if: github.actor != 'restyled-io[bot]'
3636

3737
container:
38-
image: ghcr.io/project-chip/chip-build:76
38+
image: ghcr.io/project-chip/chip-build:77
3939
options: --user root
4040

4141
steps:
@@ -56,7 +56,7 @@ jobs:
5656
if: github.actor != 'restyled-io[bot]'
5757

5858
container:
59-
image: ghcr.io/project-chip/chip-build-esp32:76
59+
image: ghcr.io/project-chip/chip-build-esp32:77
6060
options: --user root
6161

6262
steps:
@@ -77,7 +77,7 @@ jobs:
7777
if: github.actor != 'restyled-io[bot]'
7878

7979
container:
80-
image: ghcr.io/project-chip/chip-build-nrf-platform:76
80+
image: ghcr.io/project-chip/chip-build-nrf-platform:77
8181
options: --user root
8282

8383
steps:
@@ -98,7 +98,7 @@ jobs:
9898
if: github.actor != 'restyled-io[bot]'
9999

100100
container:
101-
image: ghcr.io/project-chip/chip-build-telink:76
101+
image: ghcr.io/project-chip/chip-build-telink:77
102102
options: --user root
103103

104104
steps:

.github/workflows/doxygen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
runs-on: ubuntu-latest
8383
container:
84-
image: ghcr.io/project-chip/chip-build-doxygen:76
84+
image: ghcr.io/project-chip/chip-build-doxygen:77
8585

8686
if: github.actor != 'restyled-io[bot]'
8787

.github/workflows/examples-ameba.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
ameba:
3333
name: Ameba
@@ -38,7 +38,7 @@ jobs:
3838
if: github.actor != 'restyled-io[bot]'
3939

4040
container:
41-
image: ghcr.io/project-chip/chip-build-ameba:76
41+
image: ghcr.io/project-chip/chip-build-ameba:77
4242
options: --user root
4343

4444
steps:

.github/workflows/examples-asr.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
asr:
3333
name: ASR
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build-asr:76
39+
image: ghcr.io/project-chip/chip-build-asr:77
4040
options: --user root
4141

4242
steps:

.github/workflows/examples-bouffalolab.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: github.actor != 'restyled-io[bot]'
3838

3939
container:
40-
image: ghcr.io/project-chip/chip-build-bouffalolab:76
40+
image: ghcr.io/project-chip/chip-build-bouffalolab:77
4141
volumes:
4242
- "/tmp/bloat_reports:/tmp/bloat_reports"
4343
steps:

.github/workflows/examples-cc13xx_26xx.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: github.actor != 'restyled-io[bot]'
4646

4747
container:
48-
image: ghcr.io/project-chip/chip-build-ti:76
48+
image: ghcr.io/project-chip/chip-build-ti:77
4949
volumes:
5050
- "/tmp/bloat_reports:/tmp/bloat_reports"
5151
steps:

.github/workflows/examples-cc32xx.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ concurrency:
3131

3232
env:
3333
CHIP_NO_LOG_TIMESTAMPS: true
34-
34+
3535
jobs:
3636
cc32xx:
3737
name: cc32xx
@@ -43,7 +43,7 @@ jobs:
4343
if: github.actor != 'restyled-io[bot]'
4444

4545
container:
46-
image: ghcr.io/project-chip/chip-build-ti:76
46+
image: ghcr.io/project-chip/chip-build-ti:77
4747
volumes:
4848
- "/tmp/bloat_reports:/tmp/bloat_reports"
4949
steps:

.github/workflows/examples-efr32.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: github.actor != 'restyled-io[bot]'
4141

4242
container:
43-
image: ghcr.io/project-chip/chip-build-efr32:76
43+
image: ghcr.io/project-chip/chip-build-efr32:77
4444
volumes:
4545
- "/tmp/bloat_reports:/tmp/bloat_reports"
4646
steps:

.github/workflows/examples-esp32.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
esp32:
3333
name: ESP32
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build-esp32:76
39+
image: ghcr.io/project-chip/chip-build-esp32:77
4040
volumes:
4141
- "/tmp/bloat_reports:/tmp/bloat_reports"
4242

@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
rm -rf ./zzz_pregenerated
9393
mv scripts/codegen.py.renamed scripts/codegen.py
94-
mv scripts/tools/zap/generate.py.renamed scripts/tools/zap/generate.py
94+
mv scripts/tools/zap/generate.py.renamed scripts/tools/zap/generate.py
9595
- name: Build example All Clusters App(Target:ESP32C3)
9696
run: scripts/examples/esp_example.sh all-clusters-app sdkconfig.defaults.esp32c3 esp32c3
9797
- name: Copy aside build products
@@ -126,7 +126,7 @@ jobs:
126126
if: github.actor != 'restyled-io[bot]'
127127

128128
container:
129-
image: ghcr.io/project-chip/chip-build-esp32:76
129+
image: ghcr.io/project-chip/chip-build-esp32:77
130130
volumes:
131131
- "/tmp/bloat_reports:/tmp/bloat_reports"
132132

.github/workflows/examples-infineon.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828

2929
env:
3030
CHIP_NO_LOG_TIMESTAMPS: true
31-
31+
3232
jobs:
3333
infineon:
3434
name: Infineon examples building
@@ -37,7 +37,7 @@ jobs:
3737
if: github.actor != 'restyled-io[bot]'
3838

3939
container:
40-
image: ghcr.io/project-chip/chip-build-infineon:76
40+
image: ghcr.io/project-chip/chip-build-infineon:77
4141
env:
4242
# TODO: this should probably be part of the dockerfile itself
4343
CY_TOOLS_PATHS: /opt/Tools/ModusToolbox/tools_3.2

.github/workflows/examples-linux-arm.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
arm_crosscompile:
3333
name: Linux ARM Cross compile
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build-crosscompile:76
39+
image: ghcr.io/project-chip/chip-build-crosscompile:77
4040
volumes:
4141
- "/tmp/bloat_reports:/tmp/bloat_reports"
4242

.github/workflows/examples-linux-imx.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
imx:
3333
name: Linux i.MX Build
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build-imx:76
39+
image: ghcr.io/project-chip/chip-build-imx:77
4040

4141
steps:
4242
- name: Checkout

.github/workflows/examples-linux-standalone.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
linux_standalone:
3333
name: Linux Standalone
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build:76
39+
image: ghcr.io/project-chip/chip-build:77
4040
volumes:
4141
- "/tmp/bloat_reports:/tmp/bloat_reports"
4242

.github/workflows/examples-linux-tv-casting-app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: github.actor != 'restyled-io[bot]'
3737

3838
container:
39-
image: ghcr.io/project-chip/chip-build:76
39+
image: ghcr.io/project-chip/chip-build:77
4040

4141
steps:
4242
- name: Checkout

.github/workflows/examples-mw320.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727

2828
env:
2929
CHIP_NO_LOG_TIMESTAMPS: true
30-
30+
3131
jobs:
3232
mw320:
3333
name: MW320
@@ -39,7 +39,7 @@ jobs:
3939
if: github.actor != 'restyled-io[bot]'
4040

4141
container:
42-
image: ghcr.io/project-chip/chip-build:76
42+
image: ghcr.io/project-chip/chip-build:77
4343
volumes:
4444
- "/tmp/bloat_reports:/tmp/bloat_reports"
4545
steps:

.github/workflows/examples-nrfconnect.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.actor != 'restyled-io[bot]'
4040

4141
container:
42-
image: ghcr.io/project-chip/chip-build-nrf-platform:76
42+
image: ghcr.io/project-chip/chip-build-nrf-platform:77
4343
volumes:
4444
- "/tmp/bloat_reports:/tmp/bloat_reports"
4545

.github/workflows/examples-nuttx.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: github.actor != 'restyled-io[bot]'
3636

3737
container:
38-
image: ghcr.io/project-chip/chip-build-nuttx:76
38+
image: ghcr.io/project-chip/chip-build-nuttx:77
3939
volumes:
4040
- "/tmp/bloat_reports:/tmp/bloat_reports"
4141
steps:

0 commit comments

Comments
 (0)