remove branch from testing
[bioperl-live.git] / .travis.yml
blobae78383e70018c975dd82883348b6fcd535e388d
1 language: perl
2 perl:
3   - "5.18"
4   #- "5.16"
5   #- "5.14"
6   #- "5.12"
7   #- "5.10"
9 env: PERL_CPANM_OPT="--notest --force --skip-satisfied"
11 before_install:
12     - "bash ./travis_scripts/dependency_installs"
14 install:
15     #This should solve problem installing Perl's DB_File & GraphViz
16     - "sudo apt-get install libdb-dev graphviz libgd2-xpm-dev libxml2-dev 2>&1 | tail -n 4"
17     #These are recommended or required Perl libraries
18     - "cpanm GD 2>&1 | tail -n 1"
19     - "cpanm HTML::TableExtract DBI Data::Stag DB_File 2>&1 | tail -n 1"
20     - "cpanm DBD::mysql DBD::Pg DBD::SQLite 2>&1 | tail -n 1"
21     - "cpanm Algorithm::Munkres Array::Compare Convert::Binary::C Error 2>&1 | tail -n 1"
22     - "cpanm Graph SVG SVG::Graph GraphViz 2>&1 | tail -n 1"
23     - "cpanm XML::DOM::XPath XML::Parser XML::Parser::PerlSAX 2>&1 | tail -n 1"
24     - "cpanm XML::SAX XML::SAX::Writer XML::Simple XML::LibXML XML::Twig XML::Writer 2>&1 | tail -n 1"
25     - "cpanm PostScript::TextBlock Set::Scalar Sort::Naturally YAML 2>&1 | tail -n 1"
26     - "cpanm Math::Random SOAP::Lite Spreadsheet::ParseExcel 2>&1 | tail -n 1"
27     - "cpanm Bio::Phylo 2>&1 | tail -n 1"
28     - "export PERL5LIB=$( pwd )/travis_builds/Bio-Root/lib:$( pwd ):$PERL5LIB; cpanm Bio::ASN1::EntrezGene 2>&1 | tail -n 1"
29     #This installs BioPerl itself:
30     - "perl -I$( pwd )/travis_builds/Bio-Root/lib ./Build.PL --accept"
32 script:
33     - "./Build test"
35 #TODO - send emails to bioperl-guts-l
36 notifications:
37   email: false
39 # whitelist branches
40 branches:
41   only:
42     - master