diff options
| -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 | 
