2015-01-30 08:09:53 +00:00
|
|
|
language: php
|
2015-01-31 08:15:51 +00:00
|
|
|
|
2015-03-27 23:23:25 +00:00
|
|
|
# faster builds on docker-container setup
|
2015-03-27 18:47:30 +00:00
|
|
|
sudo: false
|
|
|
|
|
2015-09-28 18:35:56 +00:00
|
|
|
# used for HHVM
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- tidy
|
|
|
|
|
2015-03-27 23:23:25 +00:00
|
|
|
# cache vendor dirs
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- vendor
|
|
|
|
- $HOME/.composer/cache
|
|
|
|
|
2015-01-30 10:23:18 +00:00
|
|
|
php:
|
2015-03-27 23:23:25 +00:00
|
|
|
- 5.5
|
|
|
|
- 5.6
|
2015-09-26 09:56:15 +00:00
|
|
|
- 7.0
|
2015-03-27 23:23:25 +00:00
|
|
|
- hhvm
|
2015-09-26 09:56:15 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
- DB=mysql
|
|
|
|
- DB=pgsql
|
|
|
|
- DB=sqlite
|
2015-03-27 18:58:48 +00:00
|
|
|
|
|
|
|
matrix:
|
2015-03-27 23:23:25 +00:00
|
|
|
fast_finish: true
|
2015-09-26 09:56:15 +00:00
|
|
|
exclude:
|
|
|
|
- php: hhvm
|
|
|
|
env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency
|
2015-03-27 23:23:25 +00:00
|
|
|
allow_failures:
|
|
|
|
- php: hhvm
|
2015-01-31 08:15:51 +00:00
|
|
|
|
2016-02-24 12:47:54 +00:00
|
|
|
# exclude v1 branches
|
2015-01-19 12:37:32 +00:00
|
|
|
branches:
|
2016-02-24 12:47:54 +00:00
|
|
|
except:
|
|
|
|
- master
|
|
|
|
- dev
|
2015-03-27 23:23:25 +00:00
|
|
|
|
2015-09-26 09:56:15 +00:00
|
|
|
before_script:
|
2016-01-21 07:59:58 +00:00
|
|
|
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;
|
|
|
|
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
|
|
|
|
- composer self-update --no-progress
|
2016-02-29 08:49:05 +00:00
|
|
|
- if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;
|
2015-01-31 08:15:51 +00:00
|
|
|
|
2016-02-27 10:26:09 +00:00
|
|
|
before_install:
|
|
|
|
- if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;
|
|
|
|
|
2015-01-31 08:15:51 +00:00
|
|
|
script:
|
2016-01-21 07:59:58 +00:00
|
|
|
- travis_wait composer update --no-interaction --no-progress
|
2015-09-26 09:56:15 +00:00
|
|
|
- ant prepare-$DB
|
2015-12-06 15:14:47 +00:00
|
|
|
- bin/phpunit -v
|