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

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Larry Rosenman <ler(at)lerctr(dot)org>, Matthew O'Connor <matthew(at)zeut(dot)net>, Devrim Gündüz <devrim(at)CommandPrompt(dot)com>, "'Joshua D(dot) Drake'" <jd(at)CommandPrompt(dot)com>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: What X86/X64 OS's do we need coverage for?
Date: 2007-04-06 18:27:15
Message-ID: 46169103.9050300@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
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}{(at)fields});
print $line,"\n";
}
|

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Zdenek Kotala 2007-04-06 18:36:38 Re: Fix for large file support
Previous Message Tom Lane 2007-04-06 17:19:25 Re: elog(FATAL) vs shared memory