aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-04-01 19:24:20 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-04-01 19:24:20 +0200
commit5d891c2b0c5b39fa816c9cb9ec904cbe3923e6b8 (patch)
tree38f2f25fe3d8cf2f1bae9ec0ce7ca1fad465839e /.travis.yml
parent1d58abb9171bc9582ad0b635ccff9467616693f6 (diff)
downloadsbotools-5d891c2b0c5b39fa816c9cb9ec904cbe3923e6b8.tar.xz
Tar the cover_db up and see if we can split the prove command into multiple lines
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 24b44f2..36cd2ee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,8 +17,13 @@ install:
- sudo bash t/travis-deps/install.sh
- 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;'
- - sudo chmod -R a+x cover_db
+ - 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;'
+ - sudo chmod -R a+x cover_db;
+ tar cvf cover_db.tar cover_db
addons:
artifacts:
- paths: "./cover_db"
+ paths: "./cover_db.tar"