Skip to content

Commit 76c016b

Browse files
committed
CI: Enable builds for msys2, msvc, arm-08, arm-10, arm-13 for Complex PRs
This PR enables the CI Builds for msys2, msvc, arm-08, arm-10, arm-13 for Complex PRs. We disable the CI Builds for arm-01, arm-09, arm-11. This will help to fix the recent breakage of builds: apache/nuttx#14598
1 parent d6edbd0 commit 76c016b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/arch.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ jobs:
103103
id: select-builds
104104
run: |
105105
106-
# Skip all macOS and Windows Builds
107-
if [[ "${{ inputs.os }}" != "Linux" ]]; then
108-
echo "Skipping all macOS and Windows Builds"
106+
# Skip all macOS Builds
107+
if [[ "${{ inputs.os }}" == "macOS" ]]; then
108+
echo "Skipping all macOS Builds"
109109
echo "skip_all_builds=1" | tee -a $GITHUB_OUTPUT
110110
exit
111111
fi
@@ -169,13 +169,13 @@ 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-03, xtensa-02"
173-
boards=$(
172+
echo "Excluding arm-0[1249], arm-1[124-9], risc-v-04..06, sim-03, xtensa-02"
173+
boards=$(
174174
echo '${{ inputs.boards }}' |
175175
jq --compact-output \
176176
'map(
177177
select(
178-
test("arm-0[248]") == false and test("arm-1[02-9]") == false and
178+
test("arm-0[1249]") == false and test("arm-1[124-9]") == false and
179179
test("risc-v-0[4-9]") == false and
180180
test("sim-0[3-9]") == false and
181181
test("xtensa-0[2-9]") == false

0 commit comments

Comments
 (0)