diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-12 21:29:02 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-12 21:29:02 -0800 |
commit | ae09da9e66e73821183c1bdb4991f92c24b05545 (patch) | |
tree | eda1e7e22a9e2209f4cc922b154800918ca6a7e2 | |
parent | 53040da862b8f50f4f1af36b6c5e0a675640b052 (diff) |
More travis fixes.
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 2c4671b..b0c0100 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,13 +15,11 @@ before_install: sudo apt-get install -qq cmake python3 valgrind elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ] then - echo 'Building without python3, to make sure that works.' + brew update + brew install valgrind + # Building without python3, to make sure that works. fi script: - make - make test - - | - if [ ${TRAVIS_ON_NAME:-'linux'} = 'linux' ] - then - PROG=`ls cmark-*.*/build/src/cmark` make leakcheck - fi + - make leakcheck |