mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
22 lines
371 B
YAML
22 lines
371 B
YAML
language: perl
|
|
perl:
|
|
- "5.28"
|
|
- "5.26"
|
|
- "5.24"
|
|
- "5.22"
|
|
- "5.20"
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcache-perl
|
|
- libdb-dev
|
|
- libpq-dev
|
|
- libxml2-dev
|
|
postgresql: "9.4"
|
|
before_script:
|
|
- cp .travis.travelynx.conf travelynx.conf
|
|
- psql -c 'create database travelynx_ci_test;' -U postgres
|
|
script:
|
|
- prove -lv
|