Merge remote-tracking branch 'upstream/main'

# Conflicts:
#	.github/actions/setup-build-environment/action.yml
This commit is contained in:
Jakub
2026-07-18 10:13:56 +02:00
7 changed files with 135 additions and 96 deletions

View File

@@ -1,5 +1,8 @@
#!/usr/bin/env bash
# exit when any command fails
set -e
global_usage() {
cat - <<EOF
Usage:
@@ -293,4 +296,11 @@ elif [[ $1 == "build-solo-firmwares" ]]; then
build_solo_firmwares
elif [[ $1 == "build-room-server-firmwares" ]]; then
build_room_server_firmwares
elif [[ $1 == "get-companion-firmwares-to-build" ]]; then
get_pio_envs_ending_with_string "_companion_radio_usb"
get_pio_envs_ending_with_string "_companion_radio_ble"
elif [[ $1 == "get-repeater-firmwares-to-build" ]]; then
get_pio_envs_ending_with_string "_repeater"
elif [[ $1 == "get-room-server-firmwares-to-build" ]]; then
get_pio_envs_ending_with_string "_room_server"
fi