2015-01-30 08:09:53 +00:00
|
|
|
language: php
|
2015-01-31 08:15:51 +00:00
|
|
|
|
2016-02-15 19:35:28 +00:00
|
|
|
services:
|
|
|
|
- rabbitmq
|
2016-09-11 16:19:41 +00:00
|
|
|
- redis
|
2016-02-15 19:35:28 +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:
|
2016-03-20 20:10:17 +00:00
|
|
|
apt: true
|
2015-03-27 23:23:25 +00:00
|
|
|
directories:
|
|
|
|
- vendor
|
|
|
|
- $HOME/.composer/cache
|
2016-03-08 16:02:34 +00:00
|
|
|
- node_modules
|
|
|
|
- $HOME/.cache/bower
|
|
|
|
- $HOME/.npm
|
2015-03-27 23:23:25 +00:00
|
|
|
|
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
|
2016-08-17 09:40:35 +00:00
|
|
|
- 7.1
|
2016-05-09 08:42:11 +00:00
|
|
|
- nightly
|
2015-09-26 09:56:15 +00:00
|
|
|
|
2016-03-08 16:02:34 +00:00
|
|
|
node_js:
|
|
|
|
- "5"
|
|
|
|
|
2015-09-26 09:56:15 +00:00
|
|
|
env:
|
2016-09-09 19:30:13 +00:00
|
|
|
- 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
|
2016-03-20 20:10:17 +00:00
|
|
|
include:
|
|
|
|
- php: 7.0
|
2016-10-04 08:25:49 +00:00
|
|
|
env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite
|
2015-03-27 23:23:25 +00:00
|
|
|
allow_failures:
|
2016-08-17 09:40:35 +00:00
|
|
|
- php: nightly
|
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:
|
2016-04-18 19:46:36 +00:00
|
|
|
- legacy
|
2015-03-27 23:23:25 +00:00
|
|
|
|
2015-09-26 09:56:15 +00:00
|
|
|
before_script:
|
2016-06-03 12:24:54 +00:00
|
|
|
- PHP=$TRAVIS_PHP_VERSION
|
|
|
|
- if [[ ! $PHP = hhvm* ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;
|
2016-08-17 09:40:35 +00:00
|
|
|
# xdebug isn't enable for PHP 7.1
|
2016-06-03 12:24:54 +00:00
|
|
|
- if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi
|
2016-01-21 07:59:58 +00:00
|
|
|
- composer self-update --no-progress
|
2016-09-09 19:30:13 +00:00
|
|
|
- if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;
|
2015-01-31 08:15:51 +00:00
|
|
|
|
2016-03-08 16:02:34 +00:00
|
|
|
install:
|
2016-10-05 13:05:42 +00:00
|
|
|
- if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.7; fi;
|
2016-09-09 19:30:13 +00:00
|
|
|
- if [[ $ASSETS = build ]]; then npm install -g npm@latest; fi;
|
2016-10-04 08:10:36 +00:00
|
|
|
- if [[ $ASSETS = build ]]; then npm install; fi;
|
2016-03-08 16:02:34 +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-10-03 21:21:02 +00:00
|
|
|
- travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist
|
2015-09-26 09:56:15 +00:00
|
|
|
- ant prepare-$DB
|
2016-12-13 08:33:05 +00:00
|
|
|
- if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi;
|
2016-09-09 19:30:13 +00:00
|
|
|
- if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi;
|
|
|
|
- if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi;
|
2016-10-19 18:10:42 +00:00
|
|
|
- if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi;
|
2016-11-20 21:24:48 +00:00
|
|
|
- if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/UserBundle/Resources/translations -v ; fi;
|
2016-10-04 10:14:28 +00:00
|
|
|
- if [[ $ASSETS = build ]]; then ./node_modules/grunt-cli/bin/grunt tests; fi;
|