ci: make sure we build Git parallel
commit406f93ae48857e8483e1d8143077f45576fe9189
authorSZEDER Gábor <szeder.dev@gmail.com>
Thu, 7 Feb 2019 18:37:36 +0000 (7 19:37 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 7 Feb 2019 19:31:33 +0000 (7 11:31 -0800)
tree4c9d57b73c907a54268ce193db26d550083efc76
parentd62dad7a7dca3f6a65162bf0e52cdf6927958e78
ci: make sure we build Git parallel

Commit 2c8921db2b (travis-ci: build with the right compiler,
2019-01-17) started to use MAKEFLAGS to specify which compiler to use
to build Git.  A bit later, and in a different topic branch commit
eaa62291ff (ci: inherit --jobs via MAKEFLAGS in run-build-and-tests,
2019-01-27) started to use MAKEFLAGS as well.  Unfortunately, there is
a semantic conflict between these two commits: both of them set
MAKEFLAGS, and since the line adding CC from 2c8921db2b comes later in
'ci/lib.sh', it overwrites the number of parallel jobs added in
eaa62291ff.

Consequently, since both commits have been merged all our CI jobs have
been building Git, building its documentation, and applying semantic
patches sequentially, making all build jobs a bit slower.  Running
the test suite is unaffected, because the number of test jobs comes
from GIT_PROVE_OPTS.

Append to MAKEFLAGS when setting the compiler to use, to ensure that
the number of parallel jobs to use is preserved.

Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ci/lib.sh