summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-12 20:09:40 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-12 20:12:30 -0800
commitf6de5eb2e20454b0bff875d6e78d76bf5c93a86d (patch)
tree14ee4fc65a5e2fc38011b66409cdbcd9a5293d0b /.travis.yml
parent3e6afcb30b9378d3cafc14d8cb2fca2930c244ac (diff)
Simplified release archive.
We now simply use git archive (which is also what github would use on their releases page). This is possible because we now include some generated files in the repository. The fact is that this is what people are going to use anyway, so instead of testing two different setups (our hand-crafted archive and the git repo), it's better just to use one.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index e179160..d67dd57 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,9 +16,11 @@ before_install:
elif [ ${TRAVIS_OS_NAME:-'linux'} = 'osx' ]
then
brew update
- brew install python3
+ # We test on OSX without python3, to make sure that works
+ # brew install python3
brew install valgrind
fi
script:
- - make testtarball
+ - make
+ - make test
- PROG=`ls cmark-*.*/build/src/cmark` make leakcheck