From d668612f16af3159a4504751f0cf60a3c17dbe96 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Wed, 16 Dec 2015 05:45:16 -0800 Subject: [PATCH] travis: update comment Update the comment explaining why we don't build the verbs libfabric provider (because Open MPI doesn't use it). Specifically: the upstream libfabric bug about building libfabric under travis has been fixed -- so that's no longer the reason we don't build it. --- .travis.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index cd6ff119f3..598823940a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,11 +30,9 @@ env: - CONFIGURE_ARGS="--prefix=$HOME/bogus" - DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_ARGS" -# Install dependencies for the verbs and usnic providers. Note that -# the libfabric verbs provider cannot currently build on Travis, so we -# disable it with --disable-verbs (see -# https://github.com/ofiwg/libfabric/issues/1553 for a description of -# the RAI_FAMILY issue). +# Install dependencies for the verbs and usnic providers. Open MPI is +# not currently using the verbs provider in Libfabric, so we might as +# well not build it. before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then git clone https://github.com/ofiwg/libfabric.git ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd libfabric && ./autogen.sh && ./configure --prefix=$HOME/bogus --enable-usnic --disable-verbs && make install && cd .. ; fi