Re: What X86/X64 OS's do we need coverage for?

Andrew Dunstan <andrew@dunslane.net>

From: Andrew Dunstan <andrew@dunslane.net>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Larry Rosenman <ler@lerctr.org>, Matthew O'Connor <matthew@zeut.net>, Devrim Gündüz <devrim@CommandPrompt.com>, "'Joshua D. Drake'" <jd@CommandPrompt.com>, pgsql-hackers@postgresql.org
Date: 2007-04-06T18:27:15Z
Lists: pgsql-hackers

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 (' | ', @{$datum}{@fields});
    print $line,"\n";
}
|