Skip to content

Commit fb87b8e

Browse files
committed
Exclude armhf, riscv64, and loongarch64 from apps builds
These architectures are not suitable for appliance-style builds (Home Assistant, openHAB, OMV, Kali).
1 parent 2de3733 commit fb87b8e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

release-targets/targets-release-apps.blacklist

Lines changed: 0 additions & 3 deletions
This file was deleted.

scripts/generate_targets.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,8 @@ def generate_apps_yaml(conf_wip_boards, manual_content=""):
511511

512512
# Select one branch per board for apps
513513
boards = select_one_branch_per_board(conf_wip_boards)
514+
# Exclude armhf, riscv64, and loongarch64 from apps builds
515+
boards = [b for b in boards if b['arch'] not in ['armhf', 'riscv64', 'loongarch64']]
514516
boards.sort(key=lambda x: x['board'])
515517

516518
yaml += """# Apps builds - one image per board with various extensions

0 commit comments

Comments
 (0)