From aabd61301c46419827ef6c47b1b1a0ec5ef7acd1 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Fri, 4 Mar 2016 11:04:58 -0800 Subject: [PATCH] Fix travis builds Stop running `make check` for capnproto. It has some networking test problem with travis. --- buildutils/setup_travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildutils/setup_travis.sh b/buildutils/setup_travis.sh index e25ae80..7a89a3e 100755 --- a/buildutils/setup_travis.sh +++ b/buildutils/setup_travis.sh @@ -11,5 +11,5 @@ sudo update-alternatives --quiet --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 sudo update-alternatives --quiet --set gcc /usr/bin/gcc-4.8 if ! [ -z "${BUILD_CAPNP}" ]; then - wget https://capnproto.org/capnproto-c++-${CAPNP_VERSION}.tar.gz && tar xzvf capnproto-c++-${CAPNP_VERSION}.tar.gz && cd capnproto-c++-${CAPNP_VERSION} && ./configure && make -j6 check && sudo make install && sudo ldconfig && cd .. + wget https://capnproto.org/capnproto-c++-${CAPNP_VERSION}.tar.gz && tar xzvf capnproto-c++-${CAPNP_VERSION}.tar.gz && cd capnproto-c++-${CAPNP_VERSION} && ./configure && make -j6 && sudo make install && sudo ldconfig && cd .. fi