Explicitly set COVERAGE=coveralls
[dbsrgits/SQL-Translator.git] / .travis.yml
CommitLineData
1094bd3d 1sudo: false
2addons:
3 apt:
4 packages:
5 - libgd2-xpm-dev
6 - graphviz
7 - libxml2-dev
ac217b39 8language: perl
9perl:
bb09ba5d 10 - "blead"
fe61dda9 11 - "dev"
12 - "5.26"
13 - "5.24"
14 - "5.22"
bb09ba5d 15 - "5.20"
16 - "5.18"
17 - "5.16"
18 - "5.14"
19 - "5.12"
20 - "5.10"
21 - "5.8"
5f80c676 22env:
bb09ba5d 23 global:
7a575c4b 24 - COVERAGE="coveralls"
bb09ba5d 25 - DBICTEST_PG_DSN=dbi:Pg:dbname=sqlt_test
26 - DBICTEST_PG_USER=postgres
27matrix:
28 allow_failures:
29 - perl: "blead"
fe61dda9 30 - perl: "dev"
69b6a4fb 31before_install:
d5103d90 32 - eval $(curl https://travis-perl.github.io/init) --auto
ac217b39 33install:
b0b66e65 34 - $HELPERS_ROOT/bin/cpan-config
20ac7e8e 35 - cpan-install --deps CGI DBD::SQLite XML::Parser DBD::Pg # Optional test deps
36 - cpan-install Test::EOL Test::NoTabs # Author test deps
60650d27 37 - cpan-install --coverage
06707e67 38before_script:
bb09ba5d 39 - psql -U postgres -c 'create database sqlt_test;'