diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-03-31 17:25:11 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-03-31 17:25:11 +0200 |
commit | 1d58abb9171bc9582ad0b635ccff9467616693f6 (patch) | |
tree | 77145c7eb788c2fa3acebac8247cf1a67aa08644 /.travis.yml | |
parent | 0385d4362c9b21b06c180a09b68ad5127aad08ef (diff) | |
download | sbotools-1d58abb9171bc9582ad0b635ccff9467616693f6.tar.xz |
Try it without tar, and no need to run `cover`
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 0ece328..24b44f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,8 +18,7 @@ install: - cpanm Text::Diff Capture::Tiny Test::Output Devel::Cover script: - bash -c 'PROVE=`which prove`; sudo PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine,+ignore,t/,+ignore,prove,db,/home/travis/build/pink-mist/sbotools/cover_db $PROVE -v t/*.t;' - - bash -c 'COVER=`which cover`; sudo $COVER || echo "Problem reading the cover_db."; exit 0' - - sudo chmod -R a+x cover_db; tar cvf "cover_db-${TRAVIS_JOB_NUMBER}.tar" cover_db + - sudo chmod -R a+x cover_db addons: artifacts: - paths: cover_db-${TRAVIS_JOB_NUMBER}.tar + paths: "./cover_db" |