From 87c93ef1756c48d37c9a7d712a60d81c18f8ac88 Mon Sep 17 00:00:00 2001 From: Chris Fields Date: Fri, 27 Jul 2012 09:41:20 -0500 Subject: [PATCH] consolidate cpanm params --- .travis.yml | 59 ++++++++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 29 deletions(-) rewrite .travis.yml (62%) diff --git a/.travis.yml b/.travis.yml dissimilarity index 62% index 3be84a2fb..8cdbf37a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,29 +1,30 @@ -language: perl -perl: - - "5.16" - - "5.14" - - "5.12" - - "5.10" - -install: - #This should solve problem installing Perl's DB_File & GraphViz - - "sudo apt-get install libdb-dev graphviz libgd2-xpm-dev 2>&1 | tail -n 4" - #These are recommended or required Perl libraries: - - "cpanm --notest GD 2>&1 | tail -n 1" - - "cpanm --notest HTML::TableExtract DBI Data::Stag DB_File 2>&1 | tail -n 1" - - "cpanm --notest DBD::mysql DBD::Pg DBD::SQLite 2>&1 | tail -n 1" - - "cpanm --notest Algorithm::Munkres Array::Compare Convert::Binary::C Error 2>&1 | tail -n 1" - - "cpanm --notest Graph SVG SVG::Graph GraphViz 2>&1 | tail -n 1" - - "cpanm --notest XML::DOM::XPath XML::Parser XML::Parser::PerlSAX 2>&1 | tail -n 1" - - "cpanm --notest XML::SAX XML::SAX::Writer XML::Simple XML::Twig XML::Writer 2>&1 | tail -n 1" - - "cpanm --notest PostScript::TextBlock Set::Scalar Sort::Naturally YAML | tail -n 1" - - "cpanm --notest Math::Random SOAP::Lite Spreadsheet::ParseExcel | tail -n 1" - #This installs BioPerl itself: - - "perl ./Build.PL --accept" - -script: - - "./Build test" - -#TODO - send emails to bioperl-guts-l -notifications: - email: false +language: perl +perl: + - "5.16" + - "5.14" + - "5.12" + - "5.10" + +env: PERL_CPANM_OPT="--notest --force --skip-satisfied" +install: + #This should solve problem installing Perl's DB_File & GraphViz + - "sudo apt-get install libdb-dev graphviz libgd2-xpm-dev 2>&1 | tail -n 4" + #These are recommended or required Perl libraries: + - "cpanm GD 2>&1 | tail -n 1" + - "cpanm HTML::TableExtract DBI Data::Stag DB_File 2>&1 | tail -n 1" + - "cpanm DBD::mysql DBD::Pg DBD::SQLite 2>&1 | tail -n 1" + - "cpanm Algorithm::Munkres Array::Compare Convert::Binary::C Error 2>&1 | tail -n 1" + - "cpanm Graph SVG SVG::Graph GraphViz 2>&1 | tail -n 1" + - "cpanm XML::DOM::XPath XML::Parser XML::Parser::PerlSAX 2>&1 | tail -n 1" + - "cpanm XML::SAX XML::SAX::Writer XML::Simple XML::Twig XML::Writer 2>&1 | tail -n 1" + - "cpanm PostScript::TextBlock Set::Scalar Sort::Naturally YAML | tail -n 1" + - "cpanm Math::Random SOAP::Lite Spreadsheet::ParseExcel | tail -n 1" + #This installs BioPerl itself: + - "perl ./Build.PL --accept" + +script: + - "./Build test" + +#TODO - send emails to bioperl-guts-l +notifications: + email: false -- 2.11.4.GIT