Skip to content

Commit 4e3386a

Browse files
committed
Merge pull request #118 from JuliaParallel/anj/travis
Try using trusty
2 parents 25f4a5a + 141da8b commit 4e3386a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
language: julia
2+
sudo: required
3+
dist: trusty
24
os:
35
- linux
46
- osx

conf/travis-install-mpi.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ case "$os" in
3131
sudo apt-get update -q
3232
case "$MPI_IMPL" in
3333
mpich1)
34-
sudo apt-get install -q gfortran mpich-shmem-bin libmpich-shmem1.0-dev
34+
sudo apt-get install -y gfortran mpich-shmem-bin libmpich-shmem1.0-dev
3535
;;
3636
mpich2)
37-
sudo apt-get install -q gfortran mpich2 libmpich2-3 libmpich2-dev
37+
sudo apt-get install -y gfortran mpich2 libmpich2-3 libmpich2-dev
3838
;;
3939
mpich|mpich3)
40-
sudo apt-get install -q gfortran libcr0 default-jdk
41-
wget -q http://www.cebacad.net/files/mpich/ubuntu/mpich-3.1/mpich_3.1-1ubuntu_amd64.deb
42-
sudo dpkg -i ./mpich_3.1-1ubuntu_amd64.deb
40+
sudo apt-get install -y gfortran libcr0 default-jdk hwloc libmpich10 libmpich-dev
41+
wget -q http://de.archive.ubuntu.com/ubuntu/pool/universe/m/mpich/mpich_3.0.4-6ubuntu1_amd64.deb
42+
sudo dpkg -i ./mpich_3.0.4-6ubuntu1_amd64.deb
4343
# rm -f ./mpich_3.1-1ubuntu_amd64.deb
4444
;;
4545
openmpi)
46-
sudo apt-get install -q gfortran openmpi-bin openmpi-common libopenmpi-dev
46+
sudo apt-get install -y gfortran openmpi-bin openmpi-common libopenmpi-dev
4747
;;
4848
*)
4949
echo "Unknown MPI implementation: $MPI_IMPL"

0 commit comments

Comments
 (0)