This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
osmith gerrit-no-reply at lists.osmocom.orgosmith has uploaded this change for review. ( https://gerrit.osmocom.org/12194 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: Ib853a93bffc4cd78d4f08624fb1e56772ce68ce5 --- M contrib/jenkins.sh 1 file changed, 4 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/libasn1c refs/changes/94/12194/1 diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index 7d68736..dbdfda6 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -14,7 +14,10 @@ autoreconf --install --force ./configure --enable-werror -$MAKE $PARALLEL_MAKE + +# Parallel make is disabled due to a race condition. On Jenkins, it often +# aborts the build with: "asn1p_y.y:357:13: error: 'param' undeclared" +$MAKE -j1 $MAKE distcheck \ || cat-testlogs.sh -- To view, visit https://gerrit.osmocom.org/12194 To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings Gerrit-Project: libasn1c Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: Ib853a93bffc4cd78d4f08624fb1e56772ce68ce5 Gerrit-Change-Number: 12194 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <osmith at sysmocom.de> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20181207/53873611/attachment.htm>