Skip to content

Commit b6fb787

Browse files
committed
CI: Enable sim-02 build when we create or update a Complex PR
CI Build Job sim-02 was disabled to reduce our usage of GitHub Runners, to comply with ASF Policy: apache/nuttx#14376 (comment) However this causes the Scheduled Merge Job to fail, due to reduced CI Checks: https://github.com/NuttX/nuttx/actions/runs/11490041505/job/31980056690#step:7:465 This PR re-enables sim-02 when we create or update a Complex PR.
1 parent f517b66 commit b6fb787

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/arch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ jobs:
169169
# If PR was Created or Modified: Exclude some boards
170170
pr=${{github.event.pull_request.number}}
171171
if [[ "$pr" != "" ]]; then
172-
echo "Excluding arm-0[248], arm-1[02-9], risc-v-04..06, sim-02, xtensa-02"
172+
echo "Excluding arm-0[248], arm-1[02-9], risc-v-04..06, sim-03, xtensa-02"
173173
boards=$(
174174
echo '${{ inputs.boards }}' |
175175
jq --compact-output \
176176
'map(
177177
select(
178178
test("arm-0[248]") == false and test("arm-1[02-9]") == false and
179179
test("risc-v-0[4-9]") == false and
180-
test("sim-0[2-9]") == false and
180+
test("sim-0[3-9]") == false and
181181
test("xtensa-0[2-9]") == false
182182
)
183183
)'

0 commit comments

Comments
 (0)