Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-29 Thread Johannes Schindelin
Hi Junio, On Mon, 28 Jan 2019, Junio C Hamano wrote: > Johannes Schindelin writes: > > > The big difference is that gettext is needed to build Git and run its test > > suite. While gnu-time is only needed if you want to run the perf tests, > > which is not a part of the CI configuration we have

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-28 Thread Junio C Hamano
Johannes Schindelin writes: > The big difference is that gettext is needed to build Git and run its test > suite. While gnu-time is only needed if you want to run the perf tests, > which is not a part of the CI configuration we have, neither Travis nor > Azure Pipelines. > > So as long as we do n

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-28 Thread Johannes Schindelin
Hi Junio, On Sun, 27 Jan 2019, Junio C Hamano wrote: > Johannes Schindelin writes: > > > No, not really. Actually, not at all. > > > >> It would be, under this new arrangement of the code, most natural for > >> Those who want to use gnu-time to arrange it to be somehow added to > >> $BREW_INSTA

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-27 Thread Junio C Hamano
Johannes Schindelin writes: > No, not really. Actually, not at all. > >> It would be, under this new arrangement of the code, most natural for >> Those who want to use gnu-time to arrange it to be somehow added to >> $BREW_INSTALL_PACKAGES, no? > > The purpose of BREW_INSTALL_PACKAGES is to list

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-27 Thread Johannes Schindelin
Hi Gábor, On Fri, 25 Jan 2019, SZEDER Gábor wrote: > On Wed, Jan 23, 2019 at 06:40:16AM -0800, Johannes Schindelin via > GitGitGadget wrote: > > From: Johannes Schindelin > > > > The upcoming patches will allow building git.git via Azure Pipelines > > (i.e. Azure DevOps' Continuous Integration)

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-26 Thread Johannes Schindelin
Hi Junio, On Wed, 23 Jan 2019, Junio C Hamano wrote: > "Johannes Schindelin via GitGitGadget" > writes: > > > diff --git a/ci/install-dependencies.sh b/ci/install-dependencies.sh > > index fe65144152..bcdcc71592 100755 > > --- a/ci/install-dependencies.sh > > +++ b/ci/install-dependencies.sh >

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-25 Thread SZEDER Gábor
On Wed, Jan 23, 2019 at 06:40:16AM -0800, Johannes Schindelin via GitGitGadget wrote: > From: Johannes Schindelin > > The upcoming patches will allow building git.git via Azure Pipelines > (i.e. Azure DevOps' Continuous Integration), where variable names and > URLs look a bit different than in T

Re: [PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-23 Thread Junio C Hamano
"Johannes Schindelin via GitGitGadget" writes: > diff --git a/ci/install-dependencies.sh b/ci/install-dependencies.sh > index fe65144152..bcdcc71592 100755 > --- a/ci/install-dependencies.sh > +++ b/ci/install-dependencies.sh > @@ -37,7 +37,8 @@ osx-clang|osx-gcc) > brew update --quiet >

[PATCH v4 03/21] ci/lib.sh: encapsulate Travis-specific things

2019-01-23 Thread Johannes Schindelin via GitGitGadget
From: Johannes Schindelin The upcoming patches will allow building git.git via Azure Pipelines (i.e. Azure DevOps' Continuous Integration), where variable names and URLs look a bit different than in Travis CI. Signed-off-by: Johannes Schindelin --- ci/install-dependencies.sh | 3 ++- ci/lib.s