1
1
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.
Этот коммит содержится в:
Jeff Squyres 2015-12-16 05:45:16 -08:00
родитель 2b9341a38a
Коммит d668612f16

Просмотреть файл

@ -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