diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-12 21:34:22 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-12 21:34:22 -0800 |
commit | 8e0f25192e6ece5c77fb69d8f4032761f85a566f (patch) | |
tree | ba3a27ab8ae7cf8464018784c4e501faa98a95ff | |
parent | ae09da9e66e73821183c1bdb4991f92c24b05545 (diff) |
Another try at .travis.yml.
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index b0c0100..4ef377d 100644 --- 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 |