Re: BuildFarm client release 4.19

From: Mikael Kjellström <mikael(dot)kjellstrom(at)mksoft(dot)nu>
To: Andrew Dunstan <andrew(dot)dunstan(at)2ndquadrant(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>, buildfarm-members(at)postgresql(dot)org
Subject: Re: BuildFarm client release 4.19
Date: 2017-05-01 18:44:53
Message-ID: 1b1da59b-3280-7934-6a59-c57d8c86c84c@mksoft.nu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: buildfarm-members pgsql-hackers

On 2017-05-01 20:25, Andrew Dunstan wrote:
> OK, that's a bug. Mea culpa.
>
> the quick fix is this patch:
>
>
> diff --git a/run_build.pl b/run_build.pl
> index aeb8966..822b4de 100755
> --- a/run_build.pl
> +++ b/run_build.pl
> @@ -1008,7 +1008,8 @@ sub writelog
>
> sub check_make
> {
> - my @out = run_log("$make -v");
> + # don't use run_log here - it's too early in the process
> + my @out = `$make -v 2>&1`;
> return undef unless ($? == 0 && grep {/GNU Make/} @out);
> return 'OK';
> }

Nope, that didn't do it.

If I zap REL9_6_STABLE and then run:

./run_build.pl REL9_6_STABLE

I get the following output:

cannot create
/usr/home/pgbf/buildroot/REL9_6_STABLE/loach.lastrun-logs/lastcomand.log:
No such file or directory
cannot create
/usr/home/pgbf/buildroot/REL9_6_STABLE/loach.lastrun-logs/lastcomand.log:
No such file or directory
cannot create
/usr/home/pgbf/buildroot/REL9_6_STABLE/loach.lastrun-logs/lastcomand.log:
No such file or directory
Buildfarm member loach failed on REL9_6_STABLE stage pgsql-Git

/Mikael

In response to

Responses

Browse buildfarm-members by date

  From Date Subject
Next Message Mikael Kjellström 2017-05-01 18:46:40 Re: BuildFarm client release 4.19
Previous Message Mikael Kjellström 2017-05-01 18:34:32 Re: BuildFarm client release 4.19

Browse pgsql-hackers by date

  From Date Subject
Next Message Mikael Kjellström 2017-05-01 18:46:40 Re: BuildFarm client release 4.19
Previous Message Andres Freund 2017-05-01 18:37:25 Re: Logical replication in the same cluster