Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .ci/scripts/zephyr-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# LICENSE file in the root directory of this source tree.

download_arm_zephyr_sdk () {
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/zephyr-sdk-0.17.2_linux-x86_64.tar.xz
tar -xf zephyr-sdk-0.17.2_linux-x86_64.tar.xz
rm -f zephyr-sdk-0.17.2_linux-x86_64.tar.xz
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.3/zephyr-sdk-0.17.3_linux-x86_64.tar.xz
tar -xf zephyr-sdk-0.17.3_linux-x86_64.tar.xz
rm -f zephyr-sdk-0.17.3_linux-x86_64.tar.xz
}

setup_zephyr_et_module () {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:

# TODO @Bujji: Should see if this can be moved into the docker image itself
download_arm_zephyr_sdk
./zephyr-sdk-0.17.2/setup.sh -c -t arm-zephyr-eabi
./zephyr-sdk-0.17.3/setup.sh -c -t arm-zephyr-eabi
cd $ZEPHYR_PROJ_ROOT
setup_zephyr_et_module

Expand Down
4 changes: 2 additions & 2 deletions examples/arm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ function select_toolchain() {
if [[ "${OS}" == "Linux" ]]; then
if [[ "${target_toolchain}" == "zephyr" ]]; then
# TODO can include support for zephyr toolchain for other host platforms later
toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/toolchain_linux-x86_64_arm-zephyr-eabi.tar.xz"
toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.3/toolchain_linux-x86_64_arm-zephyr-eabi.tar.xz"
toolchain_dir="arm-zephyr-eabi"
toolchain_md5_checksum="93128be0235cf5cf5f1ee561aa6eac5f"
else
Expand All @@ -299,7 +299,7 @@ function select_toolchain() {
fi
elif [[ "${OS}" == "Linux" ]]; then
if [[ "${target_toolchain}" == "zephyr" ]]; then
toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/toolchain_linux-aarch64_arm-zephyr-eabi.tar.xz"
toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.3/toolchain_linux-aarch64_arm-zephyr-eabi.tar.xz"
toolchain_dir="arm-zephyr-eabi"
toolchain_md5_checksum="ef4ca56786204439a75270ba800cc64b"
else
Expand Down
Loading