comment out vestigial commit(), tests now pass
[bioperl-live.git] / .travis.yml
blob6c3f131bb0c422d7261d536c095c45375c4a06d4
1 language: perl
2 perl:
3   - "5.16"
4   - "5.14"
5   - "5.12"
6   - "5.10"
8 env: PERL_CPANM_OPT="--notest --force --skip-satisfied"
9 install:
10     #This should solve problem installing Perl's DB_File & GraphViz
11     - "sudo apt-get install libdb-dev graphviz libgd2-xpm-dev libxml2-dev 2>&1 | tail -n 4"
12     #These are recommended or required Perl libraries:
13     - "cpanm GD 2>&1 | tail -n 1"
14     - "cpanm HTML::TableExtract DBI Data::Stag DB_File 2>&1 | tail -n 1"
15     - "cpanm DBD::mysql DBD::Pg DBD::SQLite 2>&1 | tail -n 1"
16     - "cpanm Algorithm::Munkres Array::Compare Convert::Binary::C Error 2>&1 | tail -n 1"
17     - "cpanm Graph SVG SVG::Graph GraphViz 2>&1 | tail -n 1"
18     - "cpanm XML::DOM::XPath XML::Parser XML::Parser::PerlSAX 2>&1 | tail -n 1"
19     - "cpanm XML::SAX XML::SAX::Writer XML::Simple XML::LibXML XML::Twig XML::Writer 2>&1 | tail -n 1"
20     - "cpanm PostScript::TextBlock Set::Scalar Sort::Naturally YAML | tail -n 1"
21     - "cpanm Math::Random SOAP::Lite Spreadsheet::ParseExcel | tail -n 1"
22     - "cpanm Bio::ASN1::EntrezGene | tail -n 1"
23     - "cpanm Bio::Phylo | tail -n 1"
24     #This installs BioPerl itself:
25     - "perl ./Build.PL --accept"
27 script:
28     - "./Build test"
30 #TODO - send emails to bioperl-guts-l
31 notifications:
32   email: false
34 # whitelist branches
35 branches:
36   only:
37     - master