Skip to content

Commit 1727702

Browse files
committed
add note for iar workflow
1 parent 647fd03 commit 1727702

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build_iar.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
matrix:
3030
family:
3131
# Alphabetical order
32+
# Note: bundle multiple families into a matrix since there is only one self-hosted instance can
33+
# run IAR build. Too many matrix can hurt due to setup/teardown overhead.
3234
- 'stm32f0 stm32f1 stm32f4 stm32f7 stm32g4 stm32h7 stm32l4'
3335
steps:
3436
- name: Clean workspace
@@ -45,11 +47,11 @@ jobs:
4547
git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
4648
python3 tools/get_dependencies.py ${{ matrix.family }}
4749
48-
- name: Checkout pico-sdk for rp2040
49-
if: matrix.family == 'rp2040'
50-
run: |
51-
git clone --depth 1 -b develop https://github.com/raspberrypi/pico-sdk ~/pico-sdk
52-
echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk
50+
#- name: Checkout pico-sdk for rp2040
51+
# if: matrix.family == 'rp2040'
52+
# run: |
53+
# git clone --depth 1 -b develop https://github.com/raspberrypi/pico-sdk ~/pico-sdk
54+
# echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk
5355

5456
- name: Build
5557
run: python3 tools/build_family.py ${{ matrix.family }} CC=iccarm

0 commit comments

Comments
 (0)