- Commit
- 8e0f25192e6ece5c77fb69d8f4032761f85a566f
- Parent
- ae09da9e66e73821183c1bdb4991f92c24b05545
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Another try at .travis.yml.
My personal build of CMark ✏️
Another try at .travis.yml.
1 file changed, 6 insertions, 4 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | .travis.yml | 10 | 6 | 4 |
diff --git a/.travis.yml b/.travis.yml @@ -15,11 +15,13 @@ before_install: sudo apt-get install -qq cmake python3 valgrind elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ] then - brew update - brew install valgrind - # Building without python3, to make sure that works. + echo "Building without python3, to make sure that works." fi script: - make - make test - - make leakcheck + - | + if [ ${TRAVIS_OS_NAME:-'linux'} = 'linux' ] + then + make leakcheck + fi