You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/pull-request.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -294,7 +294,7 @@ jobs:
294
294
runs-on: ubuntu-latest
295
295
strategy:
296
296
matrix:
297
-
chunk: [0, 1]
297
+
chunk: [0, 1, 2, 3]
298
298
steps:
299
299
- uses: actions/checkout@v4
300
300
with:
@@ -335,7 +335,7 @@ jobs:
335
335
cnt=0
336
336
for b in $(cut -f1 -d. /home/runner/work/arduino-pico/arduino-pico/boards.txt | sed 's/#.*//' | sed 's/^menu$//' | sort -u); do
337
337
cnt=$((cnt + 1))
338
-
rem=$((cnt % 2))
338
+
rem=$((cnt % 4))
339
339
if [ $rem == ${{ matrix.chunk }} ]; then
340
340
pio ci --board=$b -O "platform_packages=framework-arduinopico@symlink:///home/runner/work/arduino-pico/arduino-pico" libraries/rp2040/examples/Bootsel/Bootsel.ino
0 commit comments