Skip to content

Commit bcb93a7

Browse files
committed
[Telink] Update Zephyr revision & SDK
1 parent 368924c commit bcb93a7

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

.github/workflows/chef.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
platform: telink
113113
- name: Update Zephyr to specific revision (for developers purpose)
114114
shell: bash
115-
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 46ac12b997d6f1ced2c5cc86a7e21d880d4b114e"
115+
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py ed365fdadcf380a0b2e543a7d4ba88ed4f227466"
116116
- name: CI Examples Telink
117117
shell: bash
118118
run: |

.github/workflows/examples-telink.yaml

+12-10
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,17 @@ jobs:
4747
steps:
4848
- name: Checkout
4949
uses: actions/checkout@v4
50+
51+
- name: Update Zephyr SDK (for developers purpose)
52+
run: |
53+
set -e
54+
cd /opt/telink
55+
rm -rf zephyr-sdk-0.16.1
56+
curl --location https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.0/zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz --output zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz
57+
tar xvf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz
58+
rm -rf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz
59+
zephyr-sdk-0.17.0/setup.sh -t riscv64-zephyr-elf
60+
5061
- name: Checkout submodules & Bootstrap
5162
uses: ./.github/actions/checkout-submodules-and-bootstrap
5263
with:
@@ -58,17 +69,8 @@ jobs:
5869
with:
5970
gh-context: ${{ toJson(github) }}
6071

61-
- name: Update Zephyr SDK (Temporary change for debugging purpose)
62-
run: |
63-
cd /opt/telink \
64-
rm -rf zephyr-sdk-0.16.1 \
65-
curl --location https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.0/zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz --output zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz \
66-
tar xvf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz \
67-
rm -rf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz \
68-
zephyr-sdk-0.17.0/setup.sh -t riscv64-zephyr-elf
69-
7072
- name: Update Zephyr to specific revision (for developers purpose)
71-
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py 46ac12b997d6f1ced2c5cc86a7e21d880d4b114e"
73+
run: scripts/run_in_build_env.sh "python3 scripts/tools/telink/update_zephyr.py ed365fdadcf380a0b2e543a7d4ba88ed4f227466"
7274

7375
- name: Build example Telink (B92 retention) Air Quality Sensor App
7476
# Run test for master and s07641069 PRs

0 commit comments

Comments
 (0)