Translate MS Access memo type to text in Producer::PostgreSQL
[dbsrgits/SQL-Translator.git] / .travis.yml
1 language: perl
2 perl:
3   - "blead"
4   - "5.20"
5   - "5.18"
6   - "5.16"
7   - "5.14"
8   - "5.12"
9   - "5.10"
10   - "5.8"
11 env:
12   global:
13     - COVERAGE=1
14     - DBICTEST_PG_DSN=dbi:Pg:dbname=sqlt_test
15     - DBICTEST_PG_USER=postgres
16 matrix:
17   allow_failures:
18     - perl: "blead"
19 before_install:
20   - git clone git://github.com/ilmari/perl-travis-helper ~/travis-perl-helpers
21   - source ~/travis-perl-helpers/init
22   - build-perl
23   - perl -V
24   - build-dist
25   - cd $BUILD_DIR             # $BUILD_DIR is set by the build-dist command
26 install:
27   - cpan-install --deps XML::Parser DBD::Pg # Optional test deps
28   - cpan-install --coverage
29 before_script:
30   - psql -U postgres -c 'create database sqlt_test;'
31   - coverage-setup
32 script:
33   - perl Makefile.PL
34   - prove -lrsv $(test-dirs)
35 after_success:
36   - coverage-report