Revision f543649cbb6c4fe262ed614deaffa0b516aeaf4f authored by Erik Schnetter on 12 April 2016, 17:57:23 UTC, committed by Erik Schnetter on 12 April 2016, 17:57:23 UTC
The OpenMPI man pages seem in general more detailed. Ideally, we would point to the MPI standard, but that doesn't seem to be available on a per-function basis.
1 parent 1edfaac
Raw File
.travis.yml
language: julia
sudo: required
dist: trusty
os:
  - linux
  - osx
julia:
  - 0.4
  - nightly
notifications:
  email: false
env:
  - MPI_IMPL=mpich
  - MPI_IMPL=openmpi
before_install:
  - sh ./conf/travis-install-mpi.sh $MPI_IMPL
after_success:
  - if [ "$TRAVIS_JULIA_VERSION" = nightly ]; then julia -e 'cd(Pkg.dir("MPI")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Coveralls.process_folder())'; fi
back to top