summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-12 10:16:46 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-12 10:16:46 -0800
commit1c20b4a3cf07f95b2a9ab76f2598526130b9a97e (patch)
tree004babe1388df5f174684d2dc5933b8f0d330166 /.travis.yml
parentde2119c06aba3c2d9f7cc5a661eb241b2c8e051a (diff)
Fixed sh syntax in .travis.yml.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 6ec5c3f..20a0c82 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,11 +8,13 @@ compiler:
before_install:
# we need a more recent cmake than travis/linux provides (at least 2.8.9):
- |
- if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ];
- then echo 'yes' | sudo add-apt-repository ppa:kalakris/cmake
+ if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ]
+ then
+ echo 'yes' | sudo add-apt-repository ppa:kalakris/cmake
sudo apt-get update -qq
sudo apt-get install -qq cmake python3 valgrind
- elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ];
+ elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]
+ then
brew update
brew outdated python3 || brew upgrade python3
brew outdated valgrind || brew upgrade valgrind