Skip to content

Commit cd83dc1

Browse files
lupyuenxiaoxiang781216
authored andcommitted
CI: Increase CI Jobs to 100% for Complex PRs
This PR increases the CI Jobs for Complex PRs from 50% to 100%, as explained here: - #15451 (comment)
1 parent 1bcaacd commit cd83dc1

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/arch.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -173,21 +173,14 @@ jobs:
173173
174174
# If Not a Simple PR: Build all targets
175175
if [[ "$quit" == "1" ]]; then
176-
# If PR was Created or Modified: Exclude some boards
176+
# If PR was Created or Modified: Include all boards
177177
pr=${{github.event.pull_request.number}}
178178
if [[ "$pr" != "" ]]; then
179-
echo "Excluding arm-0[1249], arm-1[124-9], risc-v-04..06, sim-03, xtensa-02"
179+
echo "Include all boards"
180180
boards=$(
181181
echo '${{ inputs.boards }}' |
182182
jq --compact-output \
183-
'map(
184-
select(
185-
test("arm-0[1249]") == false and test("arm-1[124-9]") == false and
186-
test("risc-v-0[4-9]") == false and
187-
test("sim-0[3-9]") == false and
188-
test("xtensa-0[2-9]") == false
189-
)
190-
)'
183+
'.'
191184
)
192185
fi
193186
echo "selected_builds=$boards" | tee -a $GITHUB_OUTPUT

0 commit comments

Comments
 (0)