Skip to content

Commit 728f43d

Browse files
authored
Fix OS X travis failure (#186)
1 parent eec0516 commit 728f43d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@ env:
1515
before_install:
1616
- sh ./conf/travis-install-mpi.sh $MPI_IMPL
1717
- export PATH=$HOME/OpenMPI/bin:$PATH
18+
# Work around OpenMPI attempting to create overly long temporary
19+
# file names - and erroring as a result
20+
- export TMPDIR=/tmp
1821
after_success:
1922
- 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

conf/travis-install-mpi.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ case "$os" in
1212
Darwin)
1313
brew update
1414
brew upgrade cmake
15-
brew upgrade gcc
1615
case "$MPI_IMPL" in
1716
mpich|mpich3)
1817
brew install mpich

0 commit comments

Comments
 (0)