aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2018-03-01 18:33:50 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2018-03-01 18:33:50 +0100
commit3f9babe016328bf5b5db46e7f44fc0bfa12f325b (patch)
tree753e55a5c4a2e328ff4ac06130c7c35e528c0ff9 /.travis.yml
parentf269f0afea3fc677962cc62354802e6786de3f00 (diff)
downloaddabmod-3f9babe016328bf5b5db46e7f44fc0bfa12f325b.tar.gz
dabmod-3f9babe016328bf5b5db46e7f44fc0bfa12f325b.tar.bz2
dabmod-3f9babe016328bf5b5db46e7f44fc0bfa12f325b.zip
Fix Travis brew usage
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 03ae6a3..21b55a3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -49,8 +49,14 @@ matrix:
before_install:
- eval "${MATRIX_EVAL}"
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then (brew install fftw boost zeromq automake || true); fi
+ - |
+ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+ brew update
+ brew install automake || true
+ brew install zeromq || true
+ brew install boost || true
+ brew install fftw || true
+ fi
script:
- |