remove SOAP::Lite for realz, then test what is going on with Bio::ASN1::EntrezGene
[bioperl-live.git] / .travis.yml
blob87bb8c0da6253532daaa832674704a580d1aaf12
1 language: perl
2 perl:
3   - "5.20"
4   - "5.18"
5   - "5.16"
6   - "5.14"
8 sudo: false
9 env: PERL_CPANM_OPT="--notest --force --skip-satisfied"
11 addons:
12   apt:
13     packages:
14       - libdb-dev
15       - graphviz
16       - libgd2-xpm-dev
17       - libxml2-dev
19 install:
20     #These are recommended or required Perl libraries:
21     - "cpanm GD 2>&1 CGI | tail -n 1"
22     - "cpanm HTML::TableExtract DBI Data::Stag DB_File 2>&1 | tail -n 1"
23     - "cpanm DBD::mysql DBD::Pg DBD::SQLite 2>&1 | tail -n 1"
24     - "cpanm Algorithm::Munkres Array::Compare Convert::Binary::C Error 2>&1 | tail -n 1"
25     - "cpanm Graph SVG SVG::Graph GraphViz 2>&1 | tail -n 1"
26     - "cpanm XML::DOM::XPath XML::Parser XML::Parser::PerlSAX 2>&1 | tail -n 1"
27     - "cpanm XML::SAX XML::SAX::Writer XML::Simple XML::LibXML XML::Twig XML::Writer 2>&1 | tail -n 1"
28     - "cpanm PostScript::TextBlock Set::Scalar Sort::Naturally YAML | tail -n 1"
29     - "cpanm Math::Random Spreadsheet::ParseExcel | tail -n 1"
30     - "cpanm Bio::ASN1::EntrezGene"
31     - "cpanm Bio::Phylo | tail -n 1"
32     - "cpanm Test::Weaken | tail -n 1"
33     - "cpanm Test::Memory::Cycle | tail -n 1"
34     #Test coverage from Coveralls
35     #- cpanm --quiet --notest Devel::Cover::Report::Coveralls
36     #for some reason tests and deps aren't skipped here.  Will have to look into it more...
37     #git repos, seems to only work for simple checkouts, so pure perl only (TODO: look into before_script for more detail)
38     #- "git clone https://github.com/bioperl/Bio-Root.git; export PERL5LIB=$( pwd )/Bio-Root/lib:$PERL5LIB"
39     #This installs BioPerl itself:
40     - "perl ./Build.PL --accept"
42 script:
43     - "./Build test"
44     #Devel::Cover coverage options are: statement, branch, condition, path, subroutine, pod, time, all and none
45     #- "./Build build && cover -test -report coveralls" #complete version coverage test
46     #- PERL5OPT=-MDevel::Cover=+ignore,prove,-coverage,statement,subroutine prove -lr t #limited version coverage test
47     #- cover -report coveralls
49 #TODO - send emails to bioperl-guts-l
50 notifications:
51   email: 
52     recipients:
53       - bioperl-guts-l@lists.open-bio.org
54       - cjfields1@gmail.com
55     on_success: change
56     on_failure: change
58 # whitelist branches
59 branches:
60   only:
61     - master