-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
29 lines (29 loc) · 858 Bytes
/
.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
language: perl
perl:
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
env:
- "TEST_POD=1 TEST_ONLINE=1 HARNESS_PERL_SWITCHES=-MDevel::Cover"
before_install:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install rethinkdb
- perlbrew available
install:
- cpanm -n Test::Pod Test::Pod::Coverage
- cpanm -n Devel::Cover::Report::Coveralls
- cpanm -n --installdeps .
before_script:
- sudo rethinkdb --io-threads 2048 --daemon
- until nc -z localhost 28015; do echo Waiting for RethinkDB; sleep 1; done
- ulimit -S -n 2048
after_success:
- cover -report coveralls
notifications:
email: false