-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.travis.yml
62 lines (53 loc) · 1.23 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
language: perl
perl:
- "5.24"
#- "5.20"
- "5.18"
#- "5.16"
#- "5.14"
sudo: false
env: PERL_CPANM_OPT="--notest --force --skip-satisfied"
addons:
apt:
packages:
- ncbi-blast+
- ncbi-blast+-legacy
- clustalw
- bwa
- hmmer
- probcons
#- emboss
#- wise
#- samtools
#- muscle
#- bedtools
#- mafft
install:
#These are recommended or required Perl libraries
- "cpanm Bio::Perl 2>&1 | tail -n 1"
- "cpanm Bio::FeatureIO 2>&1 | tail -n 1"
- "cpanm IPC::Run XML::Twig 2>&1 | tail -n 1"
- "cpanm Config::Any 2>&1 | tail -n 1"
- "cpanm File::Sort 2>&1 | tail -n 1"
#- "SAMTOOLS=( dirname `which samtools` ) cpanm Bio::DB::Sam 2>&1 | tail -n 1"
# Install non-apt dependencies
before_install:
- bash ./packages/install-samtools.sh
- export PATH=$PATH:$HOME/local/bin/
script:
- "perl ./Build.PL --accept"
- "./Build test"
#after_success:
# - ./travis_scripts/trigger-dockerhub.sh
#TODO - send emails to bioperl-guts-l
notifications:
email:
recipients:
on_success: change
on_failure: change
# whitelist branches
branches:
only:
- master