Merge pull request #2119 from hierophect/stm32-ci-workflow

Add stm32 port to workflow
This commit is contained in:
Scott Shawcroft 2019-09-05 11:26:14 -07:00 committed by GitHub
commit 5c436342ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -140,6 +140,8 @@ jobs:
- "sparkfun_redboard_turbo"
- "sparkfun_samd21_dev"
- "sparkfun_samd21_mini"
- "stm32f411ve_discovery"
- "stm32f412zg_discovery"
- "trellis_m4_express"
- "trinket_m0"
- "trinket_m0_haxpress"

View File

@ -12,7 +12,7 @@ from sh.contrib import git
sys.path.append("adabot")
import adabot.github_requests as github
SUPPORTED_PORTS = ["nrf", "atmel-samd"]
SUPPORTED_PORTS = ["nrf", "atmel-samd", "stm32f4"]
BIN = ('bin',)
UF2 = ('uf2',)
@ -23,6 +23,7 @@ HEX = ('hex',)
extension_by_port = {
"nrf": UF2,
"atmel-samd": UF2,
"stm32f4": BIN,
}
# Per board overrides