X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=bin%2Fwb-graph;h=78d3c29964781e1db8f5bc713eff8d59d3b52b59;hb=b949b043c83605ded0bc2a796adb63c47553a861;hp=1ef1b1808dfb41b5ee83221830434b6f6ab688e5;hpb=50075d303d48d16721af650c8ff6bbe363ae5b77;p=wannabuild.git diff --git a/bin/wb-graph b/bin/wb-graph index 1ef1b18..78d3c29 100755 --- a/bin/wb-graph +++ b/bin/wb-graph @@ -35,9 +35,10 @@ my $date=`date -u "+%m/%d/%Y %T"`; chop($date); print "$date"; -. /org/wanna-build/triggers/common +my @archs = qw(alpha arm hppa hurd-i386 i386 ia64 m68k mips mipsel powerpc s390 amd64 sparc armel kfreebsd-amd64 kfreebsd-i386 armhf s390x); +my $arch; -for arch in $ARCHS_unstable; do +foreach $arch (@archs) { my($lastmsg, %n_state, $total, %n_builder, $pu_total); $pu_total = 0; @@ -68,13 +69,14 @@ if ($?) { print ", 0, 0"; } else { # $total -= $n_state{"Not-For-Us"}; + $total -= $n_state{"Auto-Not-For-Us"}; if ( $previously_built ) { print ", ".$n_state{"Installed"}.", ".$pu_total; } else { print ", ".$n_state{"Installed"}.", ".$total; } } -done +} print "\n"; exit 0;