File tree Expand file tree Collapse file tree 3 files changed +6
-40
lines changed Expand file tree Collapse file tree 3 files changed +6
-40
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1414 container : ghcr.io/zephyrproject-rtos/ci:v0.26.2
1515 env :
1616 CMAKE_PREFIX_PATH : /opt/toolchains
17- ZEPHYR_VERSION : v3.6-branch
18- # Board to use with renode
19- BOARD : nrf52833dk_nrf52833
17+ strategy :
18+ matrix :
19+ board : ["esp32"," nrf52833dk_nrf52833"]
2020 steps :
2121 - name : Checkout
2222 uses : actions/checkout@v4
2828 west init
2929 west update -o=--depth=1 -n
3030
31- - name : Build PoC
31+ - name : Build
3232 working-directory : /tmp/
3333 run : |
34- west build $GITHUB_WORKSPACE/samples/read_pd -b $BOARD --build-dir $GITHUB_WORKSPACE/build
34+ west build $GITHUB_WORKSPACE/samples/read_pd -b ${{ matrix.board }} --build-dir $GITHUB_WORKSPACE/build
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ os_timer_t * os_timer_create (
240240 bool oneshot )
241241{
242242
243- if (timer_cnt > TOTAL_TIMERS ) {
243+ if (timer_cnt >= TOTAL_TIMERS ) {
244244 return NULL ;
245245 }
246246
You can’t perform that action at this time.
0 commit comments