Re: pgsql: Improve speed of make check-world

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql: Improve speed of make check-world
Date: 2015-05-12 16:24:17
Message-ID: 20150512162417.GA9513@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On Tue, May 12, 2015 at 11:01:49AM -0400, Bruce Momjian wrote:
> > While you can't easily add rule action to an existing target, you can
> > easily add dependencies by just mentioning the target multiple times,
> > e.g.
> >
> > check: dep1
> >
> > check: dep2
> >
> > dep1:
> > echo 1
> >
> > dep2:
> > echo 2
> >
> >
> > Running 'make check' will output '1 2'.
> >
> > Now, of course many check's need temp-install, but the SGML build does
> > not. The attached diff uses a symbol defined in doc/src/sgml/Makefile
> > (GENERATED_SGML) to supress the temp-install target rule action.
>
> Patch applied, with added Makefile comment.

This patch has broken the build farm, and I am fixing it now.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ Everyone has their own god. +

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2015-05-12 16:31:00 pgsql: doc build: use unique Makefile variable to control temp install
Previous Message Andrew Dunstan 2015-05-12 15:32:55 Re: pgsql: Map basebackup tablespaces using a tablespace_map file