- Commit
- 4f597863da9a06972124e76bdfa7cc45d8aa7b84
- Parent
- f6de5eb2e20454b0bff875d6e78d76bf5c93a86d
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
.travis.yml: don't run valgrind on osx.
My personal build of CMark ✏️
.travis.yml: don't run valgrind on osx.
1 file changed, 5 insertions, 4 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | .travis.yml | 9 | 5 | 4 |
diff --git a/.travis.yml b/.travis.yml @@ -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