]> git.immae.eu Git - github/wallabag/wallabag.git/blame - .travis.yml
Release wallabag 2.1.4
[github/wallabag/wallabag.git] / .travis.yml
CommitLineData
03493be0 1language: php
aa6e27cf 2
e31ee20d
NL
3services:
4 - rabbitmq
7230e4c3 5 - redis
e31ee20d 6
3e6b7ea0 7# faster builds on docker-container setup
2d733277
J
8sudo: false
9
fef41241
JB
10# used for HHVM
11addons:
12 apt:
13 packages:
14 - tidy
15
3e6b7ea0
J
16# cache vendor dirs
17cache:
4cb3ef51 18 apt: true
3e6b7ea0
J
19 directories:
20 - vendor
21 - $HOME/.composer/cache
5ecdfcd0
TC
22 - node_modules
23 - $HOME/.cache/bower
24 - $HOME/.npm
3e6b7ea0 25
367664ee 26php:
3e6b7ea0
J
27 - 5.5
28 - 5.6
03fb6fde 29 - 7.0
6dfac457 30 - 7.1
19738973 31 - nightly
03fb6fde 32
5ecdfcd0
TC
33node_js:
34 - "5"
35
03fb6fde 36env:
40c47f70
JB
37 - DB=mysql
38 - DB=pgsql
39 - DB=sqlite
61413889
J
40
41matrix:
3e6b7ea0 42 fast_finish: true
4cb3ef51
JB
43 include:
44 - php: 7.0
f440e282 45 env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite
3e6b7ea0 46 allow_failures:
ddb49dd9 47 - php: 7.1
6dfac457 48 - php: nightly
aa6e27cf 49
fd3fd481 50# exclude v1 branches
3d99ce9d 51branches:
fd3fd481 52 except:
3320d394 53 - legacy
3e6b7ea0 54
03fb6fde 55before_script:
fc41abb9
JB
56 - PHP=$TRAVIS_PHP_VERSION
57 - if [[ ! $PHP = hhvm* ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi;
6dfac457 58 # xdebug isn't enable for PHP 7.1
fc41abb9 59 - if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi
79efca1e 60 - if [[ $PHP = 5.5 ]]; then composer require "phpunit/phpunit:4.*" --no-update; fi;
3ee1582e 61 - composer self-update --no-progress
40c47f70 62 - if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;
aa6e27cf 63
5ecdfcd0 64install:
3c00779d 65 - if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.7; fi;
40c47f70 66 - if [[ $ASSETS = build ]]; then npm install -g npm@latest; fi;
ca8f9bdc 67 - if [[ $ASSETS = build ]]; then npm install; fi;
5ecdfcd0 68
6daadb6c
NL
69before_install:
70 - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;
71
aa6e27cf 72script:
5fdb74b8 73 - travis_wait composer update --no-interaction --no-progress
03fb6fde 74 - ant prepare-$DB
4ac780eb 75 - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then phpunit -v ; fi;
40c47f70
JB
76 - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi;
77 - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi;
b6692247
JB
78 - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi;
79 - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/FOSUserBundle/translations -v ; fi;
9f7d154e 80 - if [[ $ASSETS = build ]]; then ./node_modules/grunt-cli/bin/grunt tests; fi;