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
This commit is contained in:
Solomon Peachy 2025-04-05 20:47:23 -04:00
parent f884f92234
commit 8b54bec33e
2 changed files with 2 additions and 2 deletions

View file

@ -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});
}

View file

@ -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) {