This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 25c87746db CI: Enable sim-02 build when we create or update a Complex
PR
25c87746db is described below
commit 25c87746db1e14ab838f5119862ba9c1f84388d6
Author: Lup Yuen Lee <[email protected]>
AuthorDate: Thu Oct 24 08:56:20 2024 +0800
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 35cffb3dfc..cf858e1b6b 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
)
)'