From: | Andrew Dunstan <andrew(at)dunslane(dot)net> |
---|---|
To: | Tomas Vondra <tv(at)fuzzy(dot)cz>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Initdb-cs_CZ.WIN-1250 buildfarm failures |
Date: | 2014-12-31 16:29:42 |
Message-ID: | 54A42476.6060601@dunslane.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On 12/31/2014 07:49 AM, Tomas Vondra wrote:
> On 28.12.2014 00:46, Noah Misch wrote:
>> On Tue, Dec 23, 2014 at 03:32:59PM +0100, Tomas Vondra wrote:
>>> On 23.12.2014 15:21, Andrew Dunstan wrote:
>>>> No, config_opts is what's passed to configure. Try something like:
>>>>
>>>> if ($branch eq 'REL9_0_STABLE')
>>>> {
>>>> $skip_steps{'pl-install-check'} = 1;
>>>> }
>>> Applied to all three animals.
>> As of the time of this change, the animals ceased to report in.
> The strange thing is that while the first run worked fine (as
> illustrated by the results submitted to pgbuildfarm.org) all the
> following runs fail like this:
>
> Global symbol "%skip_steps" requires explicit package name at
> build-farm.conf line 308.
> Compilation failed in require at ./run_branches.pl line 55.
>
> Apparently, something is broken, but my Perl-fu is limited so I have no
> idea what/why :-(
>
Sorry, I should have tested it. This seems to work:
if ($branch eq 'REL9_0_STABLE')
{
$PGBuild::Options::skip_steps .= ' pl-install-check';
$main::skip_steps{'pl-install-check'} = 1;
}
cheers
andrew
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2014-12-31 16:43:39 | Re: Using 128-bit integers for sum, avg and statistics aggregates |
Previous Message | Alvaro Herrera | 2014-12-31 16:21:55 | Re: Failure on markhor with CLOBBER_CACHE_ALWAYS for test brin |