From f6de5eb2e20454b0bff875d6e78d76bf5c93a86d Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 12 Jan 2015 20:09:40 -0800 Subject: 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. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.travis.yml') 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 -- cgit v1.2.3