Re: Adding CI to our tree

From: Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>, Justin Pryzby <pryzby(at)telsasoft(dot)com>
Cc: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Robert Haas <robertmhaas(at)gmail(dot)com>, Andrew Dunstan <andrew(at)dunslane(dot)net>, pgsql-hackers(at)postgresql(dot)org, Thomas Munro <thomas(dot)munro(at)gmail(dot)com>, Melanie Plageman <melanieplageman(at)gmail(dot)com>, Daniel Gustafsson <daniel(at)yesql(dot)se>
Subject: Re: Adding CI to our tree
Date: 2022-02-16 12:00:24
Message-ID: 07006146-c50a-2a90-96b6-8838d12bf95e@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 13.02.22 09:30, Andres Freund wrote:
>> BTW, docs can be built in parallel, and CI is using BUILD_JOBS: 4.
>> /usr/bin/xmllint --path . --noout --valid postgres.sgml
>> /usr/bin/xmllint --path . --noout --valid postgres.sgml
>> /usr/bin/xsltproc --path . --stringparam pg.version '15devel' stylesheet.xsl postgres.sgml
>> /usr/bin/xsltproc --path . --stringparam pg.version '15devel' stylesheet-man.xsl postgres.sgml
> Sure, it just doesn't make a difference:
>
> make -j48 -C doc/src/sgml/ maintainer-clean && time make -j48 -C doc/src/sgml/
> real 0m34.626s
> user 0m34.342s
> sys 0m0.298s
>
> make -j48 -C doc/src/sgml/ maintainer-clean && time make -C doc/src/sgml/
>
> real 0m34.780s
> user 0m34.494s
> sys 0m0.285s

Note that the default target in doc/src/sgml/ is "html", not "all". If
you build "all", you build "html" plus "man", which can be run in
parallel. (It's only two jobs, of course.) If you're more ambitious,
you could also run the PDF builds.

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Amul Sul 2022-02-16 12:17:11 minor code correction in typecmds.c
Previous Message Amul Sul 2022-02-16 11:45:11 Re: Proposal for internal Numeric to Uint64 conversion function.