Skip to content

Commit c850f40

Browse files
committed
Merge pull request #145 from JuliaParallel/anj/silence
Less output in OpenMPI build
2 parents b93d5a9 + fbaf1a7 commit c850f40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

conf/travis-install-mpi.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ case "$os" in
4545
openmpi)
4646
sudo apt-get install -y gfortran
4747
wget --no-check-certificate https://www.open-mpi.org/software/ompi/v1.10/downloads/openmpi-1.10.2.tar.gz
48-
tar -zxvf openmpi-1.10.2.tar.gz
48+
tar -zxf openmpi-1.10.2.tar.gz
4949
cd openmpi-1.10.2
50-
sh ./configure --prefix=$HOME/OpenMPI
51-
make -j
52-
sudo make install
50+
sh ./configure --prefix=$HOME/OpenMPI > /dev/null
51+
make -j > /dev/null
52+
sudo make install > /dev/null
5353
;;
5454
*)
5555
echo "Unknown MPI implementation: $MPI_IMPL"

0 commit comments

Comments
 (0)