Add ether to AUTHORS
[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"
86c68a0f 12 - "5.28"
fe61dda9 13 - "5.26"
14 - "5.24"
15 - "5.22"
bb09ba5d 16 - "5.20"
17 - "5.18"
18 - "5.16"
19 - "5.14"
20 - "5.12"
21 - "5.10"
22 - "5.8"
5f80c676 23env:
bb09ba5d 24 global:
c44281d2 25 - COVERAGE="coveralls codecov"
bb09ba5d 26 - DBICTEST_PG_DSN=dbi:Pg:dbname=sqlt_test
27 - DBICTEST_PG_USER=postgres
28matrix:
29 allow_failures:
30 - perl: "blead"
fe61dda9 31 - perl: "dev"
69b6a4fb 32before_install:
d5103d90 33 - eval $(curl https://travis-perl.github.io/init) --auto
ac217b39 34install:
b0b66e65 35 - $HELPERS_ROOT/bin/cpan-config
20ac7e8e 36 - cpan-install --deps CGI DBD::SQLite XML::Parser DBD::Pg # Optional test deps
37 - cpan-install Test::EOL Test::NoTabs # Author test deps
60650d27 38 - cpan-install --coverage
06707e67 39before_script:
bb09ba5d 40 - psql -U postgres -c 'create database sqlt_test;'