Skip to content

Commit 3d13d44

Browse files
authored
Merge pull request #263 from JuliaParallel/sb/allow
allow failures on OS X with openmpi
2 parents 130c580 + 68765ac commit 3d13d44

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
language: julia
22
sudo: required
33
dist: trusty
4+
45
os:
56
- linux
67
- osx
8+
79
julia:
810
- 1.0
911
- 1.1
@@ -16,13 +18,21 @@ branches:
1618

1719
notifications:
1820
email: false
21+
1922
cache:
2023
directories:
2124
- $HOME/.ccache
2225
- $HOME/.julia/registries # can we cache all of .julia?
26+
2327
env:
2428
- MPI_IMPL=mpich
2529
- MPI_IMPL=openmpi
30+
31+
matrix:
32+
allow_failures: # issue 262
33+
- os: osx
34+
env: MPI_IMPL=openmpi
35+
2636
before_install:
2737
- sh ./conf/travis-install-mpi.sh $MPI_IMPL
2838
- export PATH=$HOME/OpenMPI/bin:$HOME/MPICH/bin:$PATH

0 commit comments

Comments
 (0)