Skip to content

Commit b213fc4

Browse files
authored
Bump Zephyr SDK Version in CI Image from v0.16.0 -> v0.17.2 (#13380)
### Summary Previously, the CI docker image that was used for the Zephyr tests downloaded and used the v0.16.0 version of the Zephyr SDK. Zephyr has updated their documentation to recommend user to use v0.17.2. This PR makes the needed change so that the CI job that runs the Zephyr tests pulls the v0.17.2 version of the SDK. ### Test Plan Tested on local repro of Docker image, and all support models (`add`, `softmax`, and `mv2`) still pass.
1 parent bfc099f commit b213fc4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.ci/scripts/zephyr-utils.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
# LICENSE file in the root directory of this source tree.
77

88
download_arm_zephyr_sdk () {
9-
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.0/zephyr-sdk-0.16.0_linux-x86_64.tar.xz
10-
tar -xf zephyr-sdk-0.16.0_linux-x86_64.tar.xz
11-
rm -f zephyr-sdk-0.16.0_linux-x86_64.tar.xz
9+
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/zephyr-sdk-0.17.2_linux-x86_64.tar.xz
10+
tar -xf zephyr-sdk-0.17.2_linux-x86_64.tar.xz
11+
rm -f zephyr-sdk-0.17.2_linux-x86_64.tar.xz
1212
}
1313

1414
setup_zephyr_et_module () {

.github/workflows/trunk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
9393
# TODO @Bujji: Should see if this can be moved into the docker image itself
9494
download_arm_zephyr_sdk
95-
./zephyr-sdk-0.16.0/setup.sh -c -t arm-zephyr-eabi
95+
./zephyr-sdk-0.17.2/setup.sh -c -t arm-zephyr-eabi
9696
cd $ZEPHYR_PROJ_ROOT
9797
setup_zephyr_et_module
9898

0 commit comments

Comments
 (0)