forked from bioperl/bioperl-live
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
39 lines (35 loc) · 1.34 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 libxml2-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::LibXML 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"
- "cpanm Bio::ASN1::EntrezGene | tail -n 1"
- "cpanm Bio::Phylo | tail -n 1"
- "cpanm -f Bio::ASN1::EntrezGene | tail -n 1"
#This installs BioPerl itself:
- "perl ./Build.PL --accept"
script:
- "./Build test"
#TODO - send emails to bioperl-guts-l
notifications:
email: false
# whitelist branches
branches:
only:
- master
- v1