.travis.yml: don't run valgrind on osx.

This commit is contained in:
John MacFarlane 2015-01-12 20:17:15 -08:00
Родитель f6de5eb2e2
Коммит 4f597863da
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -15,12 +15,13 @@ before_install:
sudo apt-get install -qq cmake python3 valgrind
elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]
then
brew update
# We test on OSX without python3, to make sure that works
# brew install python3
brew install valgrind
fi
script:
- make
- make test
- PROG=`ls cmark-*.*/build/src/cmark` make leakcheck
- |
if [ $(TRAVIS_ON_NAME:-'linux'} = 'linux' ]
then
PROG=`ls cmark-*.*/build/src/cmark` make leakcheck
fi