Skip to content

Commit 5523fb8

Browse files
committed
targets: change community builds from forky to trixie
Update the community minimal CLI target to use Debian Trixie instead of Debian Forky. Also removes Forky fallback patterns from exposed.map generation since Trixie is now the primary testing release. - community-forky-all → community-trixie-all - RELEASE: forky → RELEASE: trixie - Remove forky fallback patterns (trixie is primary) Signed-off-by: Igor Pecovnik <igor@armbian.com>
1 parent 597c825 commit 5523fb8

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

scripts/generate_targets.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,20 +1056,20 @@ def generate_community_yaml(csc_tvb_boards, manual_content=""):
10561056
yaml += """# automated lists stop
10571057
10581058
targets:
1059-
# Debian forky minimal CLI for all community boards
1060-
community-forky-all:
1059+
# Debian trixie minimal CLI for all community boards
1060+
community-trixie-all:
10611061
enabled: yes
10621062
configs: [ armbian-community ]
10631063
pipeline:
10641064
gha: *armbian-gha
10651065
build-image: "yes"
10661066
vars:
1067-
RELEASE: forky
1067+
RELEASE: trixie
10681068
BUILD_MINIMAL: "yes"
10691069
BUILD_DESKTOP: "no"
10701070
items:
10711071
"""
1072-
# Combine all lists for Debian Forky
1072+
# Combine all lists for Debian Trixie
10731073
yaml += ' - *community-current-fast-hdmi\n'
10741074
if current_slow:
10751075
yaml += ' - *community-current-slow-hdmi\n'
@@ -1277,12 +1277,6 @@ def generate_exposed_map(conf_wip_boards, csc_tvb_boards=None):
12771277
lines.append(minimal_pattern)
12781278
lines.append(minimal_pattern_no_prefix)
12791279

1280-
# Also add forky as fallback alternative
1281-
minimal_pattern_forky = f"{dir_prefix}Armbian_{community_prefix}[0-9].*{board_pattern}_forky_{branch}_[0-9]*.[0-9]*.[0-9]*_minimal{file_ext}"
1282-
minimal_pattern_no_prefix_forky = f"Armbian_{community_prefix}[0-9].*{board_pattern}_forky_{branch}_[0-9]*.[0-9]*.[0-9]*_minimal{file_ext}"
1283-
lines.append(minimal_pattern_forky)
1284-
lines.append(minimal_pattern_no_prefix_forky)
1285-
12861280
# 2. Second pattern: depends on board type
12871281
# For loongarch: only bookworm minimal (no noble)
12881282
if is_fast == 'loongarch':

0 commit comments

Comments
 (0)