On Thu, Mar 12, 2020 at 4:00 PM Ilya Maximets <[email protected]> wrote: > > Sparse introduced a new utility 'sindex' for semantic search, > but unfortunately it fails to build in Travis environment. > Disabling it explicitly as we don't need it anyway. > > Signed-off-by: Ilya Maximets <[email protected]>
Thanks. I applied this patch to master. Numan > --- > .travis/linux-prepare.sh | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/.travis/linux-prepare.sh b/.travis/linux-prepare.sh > index 50189c421..0bb0ff096 100755 > --- a/.travis/linux-prepare.sh > +++ b/.travis/linux-prepare.sh > @@ -7,8 +7,10 @@ set -ev > # Explicitly disable sparse support for llvm because some travis > # environments claim to have LLVM (llvm-config exists and works) but > # linking against it fails. > +# Disabling sqlite support because sindex build fails and we don't > +# really need this utility being installed. > git clone git://git.kernel.org/pub/scm/devel/sparse/sparse.git > -cd sparse && make -j4 HAVE_LLVM= install && cd .. > +cd sparse && make -j4 HAVE_LLVM= HAVE_SQLITE= install && cd .. > > pip install --disable-pip-version-check --user six flake8 hacking > pip install --user --upgrade docutils > -- > 2.24.1 > > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev > _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
