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/release/sims.pl | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) (limited to 'tools/release/sims.pl') diff --git a/tools/release/sims.pl b/tools/release/sims.pl index 2cf5c4f45a..10cf950c53 100755 --- a/tools/release/sims.pl +++ b/tools/release/sims.pl @@ -188,26 +188,14 @@ sub buildit { `make install 2>/dev/null`; } -for my $b (sort byname keys %builds) { - if ($builds{$b}{status} > 0 && $builds{$b}{status} >= 2) +for my $b (sort &simbuilds) { + if ($builds{$b}{ram} ne '') { - if ($builds{$b}{ram} ne '') - { - # These builds need the ram size sent to configure - runone($b, $builds{$b}{ram} . '\n'); - } - else - { - runone($b); - } + # These builds need the ram size sent to configure + runone($b, $builds{$b}{ram} . '\n'); + } + else + { + runone($b); } } - -#The following ports are in the unusable category, but the simulator does build -runone("ondavx747"); -runone("ondavx747p"); -runone("ondavx777"); -runone("sansam200v4"); -runone("zenvision"); -runone("zenvisionm30gb"); -runone("zenvisionm60gb"); -- cgit v1.2.3