2015-01-30 09:09:53 +01:00
|
|
|
language: php
|
2015-01-31 09:15:51 +01:00
|
|
|
|
2015-03-28 00:23:25 +01:00
|
|
|
# faster builds on docker-container setup
|
2015-03-27 19:47:30 +01:00
|
|
|
sudo: false
|
|
|
|
|
2015-09-28 20:35:56 +02:00
|
|
|
# used for HHVM
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- tidy
|
|
|
|
|
2015-03-28 00:23:25 +01:00
|
|
|
# cache vendor dirs
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- vendor
|
|
|
|
- $HOME/.composer/cache
|
|
|
|
|
2015-01-30 11:23:18 +01:00
|
|
|
php:
|
2015-03-28 00:23:25 +01:00
|
|
|
- 5.5
|
|
|
|
- 5.6
|
2015-09-26 11:56:15 +02:00
|
|
|
- 7.0
|
2015-03-28 00:23:25 +01:00
|
|
|
- hhvm
|
2015-09-26 11:56:15 +02:00
|
|
|
|
|
|
|
env:
|
|
|
|
- DB=mysql
|
|
|
|
- DB=pgsql
|
|
|
|
- DB=sqlite
|
2015-03-27 19:58:48 +01:00
|
|
|
|
|
|
|
matrix:
|
2015-03-28 00:23:25 +01:00
|
|
|
fast_finish: true
|
2015-09-26 11:56:15 +02:00
|
|
|
exclude:
|
|
|
|
- php: hhvm
|
|
|
|
env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency
|
2015-03-28 00:23:25 +01:00
|
|
|
allow_failures:
|
|
|
|
- php: hhvm
|
2015-01-31 09:15:51 +01:00
|
|
|
|
2015-01-19 13:37:32 +01:00
|
|
|
branches:
|
2015-03-28 00:23:25 +01:00
|
|
|
only:
|
|
|
|
- v2
|
|
|
|
|
2015-09-26 11:56:15 +02:00
|
|
|
before_script:
|
2015-09-26 19:23:20 +02:00
|
|
|
- composer self-update
|
|
|
|
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
|
2015-09-26 11:56:15 +02:00
|
|
|
# disable xdebug since we don't use code-coverage for now
|
2015-09-26 19:06:32 +02:00
|
|
|
- if [[ $TRAVIS_PHP_VERSION != '5.6' && $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then phpenv config-rm xdebug.ini; fi
|
2015-09-26 11:56:15 +02:00
|
|
|
- if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi;
|
2015-01-31 09:15:51 +01:00
|
|
|
|
|
|
|
script:
|
2015-09-26 11:56:15 +02:00
|
|
|
- ant prepare-$DB
|
2015-12-06 16:14:47 +01:00
|
|
|
- bin/phpunit -v
|