jenkins.sh: Workaround race conditon in make

Sometimes the jenkins job fails to build. I never have this issue
on my workstation. Disabling PARALLEL_MAKE is osmo-trx jenkins.sh (which
requires libusrp build) made libusrp stop failing there, so let's do the
same here.

OS#3970
Change-Id: Iab8eab6d21365e3ee8d018428a707c56cc1b72e5
This commit is contained in:
Pau Espin 2019-08-09 14:22:56 +02:00
parent ae66dcc21b
commit 45c0f9e8d2
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ set -ex
autoreconf --install --force
./configure
$MAKE $PARALLEL_MAKE
$MAKE # Parallel make fails ocsasionally, see OS#3970.
$MAKE distcheck
$MAKE maintainer-clean