osmith has uploaded this change for review. ( https://gerrit.osmocom.org/12419
Change subject: jenkins.sh: disable parallel build
......................................................................
jenkins.sh: disable parallel build
Avoid a race condition that causes the build to fail on Jenkins with:
asn1p_y.y: In function 'asn1p_parse':
asn1p_y.y:357:13: error: 'param' undeclared (first use in this function)
*(void **)param = $1;
^~~~~
Change-Id: I80eecc60b96e87710218089dfdd1a3f87b40a8b1
---
M contrib/jenkins.sh
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/asn1c refs/changes/19/12419/1
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 1b09c8b..823b343 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -14,7 +14,7 @@
set -x
./configure # CFLAGS="-Werror" CPPFLAGS="-Werror" #-Werror currently broken
-$MAKE $PARALLEL_MAKE
+$MAKE -j1
$MAKE check
#$MAKE distcheck # distcheck currently broken
--
To view, visit https://gerrit.osmocom.org/12419
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: asn1c
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I80eecc60b96e87710218089dfdd1a3f87b40a8b1
Gerrit-Change-Number: 12419
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>