Re: Initdb-cs_CZ.WIN-1250 buildfarm failures

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-23 14:21:01
Message-ID: 54997A4D.2020702@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


On 12/23/2014 07:14 AM, Tomas Vondra wrote:
> On 23.12.2014 09:19, Noah Misch wrote:
>> On Sat, Dec 20, 2014 at 07:28:33PM +0100, Tomas Vondra wrote:
>>> On 20.12.2014 19:05, Tom Lane wrote:
>>>> Locale cs_CZ.WIN-1250 is evidently marked with a codeset property of
>>>> "ANSI_X3.4-1968" (which means old-school US-ASCII). That's certainly
>>>> wrong. I believe the correct thing would be "CP1250".
>>> Yes. I fixed the locales and added the locales back to the client
>>> configuration.
>> Thanks. These animals are now OK except on REL9_0_STABLE. The log message of
>> commit 2dfa15d explains their ongoing 9.0 failures. I recommend adding
>> --skip-steps=pl-install-check to their 9.0 invocations. Dropping the affected
>> locales is another option, but we benefit from the rare encoding coverage more
>> than we benefit from the src/bin/pl coverage.
> OK, can do. Something like this in build-farm.conf should work, right?
>
> if ($branch eq 'REL9_0_STABLE')
> {
> push(@{$conf{config_opts}},"--skip-steps=pl-install-check");
> }
>

No, config_opts is what's passed to configure. Try something like:

if ($branch eq 'REL9_0_STABLE')
{
$skip_steps{'pl-install-check'} = 1;
}

cheers

andrew

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2014-12-23 14:23:38 Re: mysql with postgres
Previous Message Michael Paquier 2014-12-23 14:05:55 Re: [bug fix or improvement?] Correctly place DLLs for ECPG apps in bin folder