Zephyr toolchain version - Reproducible builds #34
-
I am attempting to have reproducible builds from my ci/cd and my development machine with this docker image. I noticed that the Zephyr toolchain version is 0.15.1 Line 87 in 9d3444f On my Windows machine I have installed the Nordic connect SDK (v2.0.0) and Zephyr SDK through the NRF Connect for Desktop software. I noticed that the zephyr toolchain that I have installed is v0.14.1. This version includes GCC-ARM v10. However, the docker image includes toolchain v0.15.1 which has GCC-ARM v12. I would like to know how can I change the toolchain version so it matches my development machine. I think that for the NRF Connect SDK v2.0.0 the zephyr toolchain version is 0.14.1 right? Further details on how I run this docker container on my ci/cd west init -m https://github.com/nrfconnect/sdk-nrf/ --mr v2.0.0
west update --narrow -o=--depth=1
west build MY_PROJECT_DIR --board MY_BOARD |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
You can change the URL to point to the release you want.
|
Beta Was this translation helpful? Give feedback.
You can change the URL to point to the release you want.
Yes.