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



--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to