Tom Lane wrote:
FWIW, I think we are more in need of coverage of different configure-option
sets than of OS's per se.


If someone would like to put together a list of gaps we can see what we can do about it.

For anyone who wants the data on what is being built currently, the dashboard data is available via SOAP interface. An example client to fetch the data is below.

cheers

andrew

------------------------------------------------------------------------------------------------------

|#!/usr/bin/perl

use SOAP::Lite;

my $obj = SOAP::Lite
->uri('http://www.pgbuildfarm.org/PGBuildFarm')
->proxy('http://www.pgbuildfarm.org/cgi-bin/show_status_soap.pl')
;

my $data = $obj->get_status->result;

# you now have the data. One example of how to use it is below.

my @fields = qw(
   branch sysname stage status
   operating_system os_version
   compiler compiler_version architecture
   when_ago snapshot build_flags
);

my $head = join (' | ', @fields);
print $head,"\n";

foreach my $datum (@$data)
{
   my $line = join (' | ', @[EMAIL PROTECTED]);
   print $line,"\n";
}
|

---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

              http://archives.postgresql.org

Reply via email to