From 6f1e67e5e318ba2fd0f5ec1892c7b6633ec6521c Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sun, 30 Jun 2024 16:24:05 -0400 Subject: builds: Add an explicit 'simbuilds' list It includes all targets that have a working simulator build. * All stable targets except those that are flagged as bad * All unstable targets that are flagged as good Change-Id: Id0e20a10af72236c819077f919ee5cc168ebf14e --- tools/list_targets.pl | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'tools/list_targets.pl') diff --git a/tools/list_targets.pl b/tools/list_targets.pl index 039c14f0db..9785bb5f22 100755 --- a/tools/list_targets.pl +++ b/tools/list_targets.pl @@ -10,18 +10,29 @@ require "./builds.pm"; +print "Retired:\n"; + +for my $b (&stablebuilds) { + print " " , $builds{$b}{name} , "\n" if($builds{$b}{status} == 0); +} + print "Stable:\n"; for my $b (&stablebuilds) { - print $builds{$b}{name} , "\n"; + print " " , $builds{$b}{name} , "\n" if($builds{$b}{status} != 0); } print "Unstable:\n"; for my $b (&usablebuilds) { - print $builds{$b}{name} , "\n"; + print " " , $builds{$b}{name} , "\n"; } print "Unusable:\n"; for my $b (&allbuilds) { - print $builds{$b}{name} , "\n" if($builds{$b}{status} == 1); + print " " , $builds{$b}{name} , "\n" if($builds{$b}{status} == 1); +} + +print "Simulators:\n"; +for my $b (&simbuilds) { + print " " , $builds{$b}{name} , "\n"; } -- cgit v1.2.3