Skip to content

Commit

Permalink
bastardkb_build_release.py: add missing Vial-enabled blackpill .uf2
Browse files Browse the repository at this point in the history
… format
  • Loading branch information
Charly Delay committed Jun 5, 2022
1 parent 8cd0ffb commit 4aaaf7c
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions bastardkb_build_releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,20 @@ class FirmwareList(NamedTuple):
# `vial-kb/vial-qmk:vial`.
FirmwareList(
branch="bkb-vial",
configurations=tuple(
Firmware(keyboard=f"{keyboard}/{adapter}", keymap="vial")
for keyboard in ALL_BASTARD_KEYBOARDS
for adapter in STABLE_ADAPTERS
configurations=(
*tuple(
Firmware(keyboard=f"{keyboard}/{adapter}", keymap="vial")
for keyboard in ALL_BASTARD_KEYBOARDS
for adapter in STABLE_ADAPTERS
),
*tuple(
Firmware(
keyboard=f"{keyboard}/blackpill",
keymap="vial",
env_vars=("BOOTLOADER=tinyuf2",),
)
for keyboard in ALL_BASTARD_KEYBOARDS
),
),
),
# Firmware build off the `bkb-vial-feat-miryoku` branch that contains quick
Expand All @@ -164,14 +174,14 @@ class FirmwareList(NamedTuple):
keymap="manna-harbour_miryoku",
keymap_alias="miryoku-vial",
env_vars=(
"KEY_OVERRIDE_ENABLE=no",
"LTO_ENABLE=yes",
"QMK_SETTINGS=no",
"SPACE_CADET_ENABLE=no",
"TAP_DANCE_ENABLE=no",
"VIA_ENABLE=yes",
"VIAL_ENABLE=yes",
"VIAL_INSECURE=yes",
"LTO_ENABLE=yes",
"SPACE_CADET_ENABLE=no",
"TAP_DANCE_ENABLE=no",
"KEY_OVERRIDE_ENABLE=no",
"QMK_SETTINGS=no",
"VIALRGB_ENABLE=yes",
),
)
Expand Down

0 comments on commit 4aaaf7c

Please sign in to comment.