Skip to content

Commit

Permalink
consolidate cpanm params
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Fields committed Jul 27, 2012
1 parent bb34a39 commit 87c93ef
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .travis.yml
Expand Up @@ -5,19 +5,20 @@ perl:
- "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 --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"
- "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"

Expand Down

0 comments on commit 87c93ef

Please sign in to comment.