Skip to content

Commit 0af3af4

Browse files
authored
chore: update NuttX version to 12.11 in CI workflows (#4720)
The NuttX project released version 12.11 with improvements and bug fixes. Updating the CI workflows to use the latest stable version ensures that WAMR testing and compilation verification runs against the most current NuttX release. Updated 4 repository references total across 2 workflow files to point to the new release branch. Signed-off-by: Huang Qi <[email protected]>
1 parent 1d255ce commit 0af3af4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/compilation_on_nuttx.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ jobs:
8888
uses: actions/checkout@v5
8989
with:
9090
repository: apache/nuttx
91-
ref: releases/12.9
91+
ref: releases/12.11
9292
path: nuttx
9393

9494
- name: Checkout NuttX Apps
9595
uses: actions/checkout@v5
9696
with:
9797
repository: apache/nuttx-apps
98-
ref: releases/12.9
98+
ref: releases/12.11
9999
path: apps
100100

101101
- name: Checkout WAMR
@@ -108,6 +108,7 @@ jobs:
108108
working-directory: nuttx
109109
run: |
110110
tools/configure.sh ${{ matrix.nuttx_board_config }}
111+
kconfig-tweak --disable CONFIG_RP2040_UF2_BINARY
111112
kconfig-tweak --enable CONFIG_PSEUDOFS_SOFTLINKS
112113
kconfig-tweak --enable CONFIG_INTERPRETERS_WAMR
113114
kconfig-tweak --enable CONFIG_INTERPRETERS_IWASM_TASK

.github/workflows/spec_test_on_nuttx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,14 @@ jobs:
146146
uses: actions/checkout@v5
147147
with:
148148
repository: apache/nuttx
149-
ref: ${{ matrix.target_config.target == 'xtensa' && '985d395b025cf2012b22f6bb4461959fa6d87645' || 'releases/12.9' }}
149+
ref: ${{ matrix.target_config.target == 'xtensa' && '985d395b025cf2012b22f6bb4461959fa6d87645' || 'releases/12.11' }}
150150
path: nuttx
151151

152152
- name: Checkout NuttX Apps
153153
uses: actions/checkout@v5
154154
with:
155155
repository: apache/nuttx-apps
156-
ref: ${{ matrix.target_config.target == 'xtensa' && '2ef3eb25c0cec944b13792185f7e5d5a05990d5f' || 'releases/12.9' }}
156+
ref: ${{ matrix.target_config.target == 'xtensa' && '2ef3eb25c0cec944b13792185f7e5d5a05990d5f' || 'releases/12.11' }}
157157
path: apps
158158

159159
- name: Checkout WAMR

0 commit comments

Comments
 (0)