From 8b54bec33edd6f72b96362c2e70532f4e2379454 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sat, 5 Apr 2025 20:47:23 -0400 Subject: [PATCH] tools: Release scripts should only create artefacts for _stable_ targets ...Instead of including unstable targets too. Those have to make do with dailies. Change-Id: Ie7d75338dab7b395e1f5980da54bc03f4b9f0184 --- tools/release/bins.pl | 2 +- tools/release/voices.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/release/bins.pl b/tools/release/bins.pl index fe66e772c1..0d06a96aca 100755 --- a/tools/release/bins.pl +++ b/tools/release/bins.pl @@ -121,7 +121,7 @@ sub buildfonts { print "cd tools && make\n" if($verbose); `(cd tools && make ) >/dev/null`; -for my $b (&usablebuilds) { +for my $b (&stablebuilds) { my $configname = $builds{$b}{configname} ? $builds{$b}{configname} : $b; runone($b, $configname, $builds{$b}{ram}); } diff --git a/tools/release/voices.pl b/tools/release/voices.pl index 55a7a5258f..c0bac95b1c 100755 --- a/tools/release/voices.pl +++ b/tools/release/voices.pl @@ -80,7 +80,7 @@ if (!defined($ENV{'POOL'})) { `mkdir -p $outdir`; -for my $b (&usablebuilds) { +for my $b (&stablebuilds) { next if ($builds{$b}{voice}); # no variants for my $v (&allvoices) {