From 25c87746db1e14ab838f5119862ba9c1f84388d6 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Thu, 24 Oct 2024 08:56:20 +0800 Subject: [PATCH] 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: https://github.com/apache/nuttx/issues/14376#issuecomment-2427837859 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. --- .github/workflows/arch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/arch.yml b/.github/workflows/arch.yml index 35cffb3dfca53..cf858e1b6bfd0 100644 --- a/.github/workflows/arch.yml +++ b/.github/workflows/arch.yml @@ -169,7 +169,7 @@ jobs: # If PR was Created or Modified: Exclude some boards pr=${{github.event.pull_request.number}} if [[ "$pr" != "" ]]; then - echo "Excluding arm-0[248], arm-1[02-9], risc-v-04..06, sim-02, xtensa-02" + echo "Excluding arm-0[248], arm-1[02-9], risc-v-04..06, sim-03, xtensa-02" boards=$( echo '${{ inputs.boards }}' | jq --compact-output \ @@ -177,7 +177,7 @@ jobs: select( test("arm-0[248]") == false and test("arm-1[02-9]") == false and test("risc-v-0[4-9]") == false and - test("sim-0[2-9]") == false and + test("sim-0[3-9]") == false and test("xtensa-0[2-9]") == false ) )'