Skip to content

Commit 5c43634

Browse files
authored
Merge pull request adafruit#2119 from hierophect/stm32-ci-workflow
Add stm32 port to workflow
2 parents 296e858 + 96d1711 commit 5c43634

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ jobs:
140140
- "sparkfun_redboard_turbo"
141141
- "sparkfun_samd21_dev"
142142
- "sparkfun_samd21_mini"
143+
- "stm32f411ve_discovery"
144+
- "stm32f412zg_discovery"
143145
- "trellis_m4_express"
144146
- "trinket_m0"
145147
- "trinket_m0_haxpress"

tools/build_board_info.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
sys.path.append("adabot")
1313
import adabot.github_requests as github
1414

15-
SUPPORTED_PORTS = ["nrf", "atmel-samd"]
15+
SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4"]
1616

1717
BIN = ('bin',)
1818
UF2 = ('uf2',)
@@ -23,6 +23,7 @@
2323
extension_by_port = {
2424
"nrf": UF2,
2525
"atmel-samd": UF2,
26+
"stm32f4": BIN,
2627
}
2728

2829
# Per board overrides

0 commit comments

Comments
 (0)