Skip to content

Commit

Permalink
workflows: Target specific platforms for the RTT enabled builds to av…
Browse files Browse the repository at this point in the history
…oid strife with Flash capacity limits
  • Loading branch information
dragonmux authored and esden committed Jun 6, 2023
1 parent d6c03b4 commit 3bc59eb
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,26 @@ jobs:
- name: Clean
run: make clean

# Build all the firmware variants with RTT enabled
- name: Build all platform variants firmware with RTT
run: make all_platforms HOSTED_BMP_ONLY=1 ENABLE_RTT=1
# Build all the firmware variants that have more than 128kiB of Flash, with RTT enabled
- name: Build firmware with RTT
run: |
make PROBE_HOST=96b_carbon ENABLE_RTT=1
make -C src clean
make PROBE_HOST=blackpill-f401cc ENABLE_RTT=1
make -C src clean
make PROBE_HOST=blackpill-f401ce ENABLE_RTT=1
make -C src clean
make PROBE_HOST=blackpill-f411ce ENABLE_RTT=1
make -C src clean
make PROBE_HOST=f3 ENABLE_RTT=1
make -C src clean
make PROBE_HOST=f4discovery ENABLE_RTT=1
make -C src clean
make PROBE_HOST=hydrabus ENABLE_RTT=1
make -C src clean
make PROBE_HOST=launchpad-icdi ENABLE_RTT=1
make -C src clean
make PROBE_HOST=stlinkv3 ENABLE_RTT=1
- name: Clean
run: make clean
Expand Down

0 comments on commit 3bc59eb

Please sign in to comment.