]>
Commit | Line | Data |
---|---|---|
1 | language: php | |
2 | ||
3 | services: | |
4 | - rabbitmq | |
5 | - redis | |
6 | ||
7 | # faster builds on docker-container setup | |
8 | sudo: false | |
9 | ||
10 | # used for HHVM | |
11 | addons: | |
12 | apt: | |
13 | packages: | |
14 | - tidy | |
15 | ||
16 | # cache vendor dirs | |
17 | cache: | |
18 | apt: true | |
19 | directories: | |
20 | - vendor | |
21 | - $HOME/.composer/cache | |
22 | - node_modules | |
23 | - $HOME/.cache/bower | |
24 | - $HOME/.npm | |
25 | ||
26 | php: | |
27 | - 5.5 | |
28 | - 5.6 | |
29 | - 7.0 | |
30 | - 7.1 | |
31 | - nightly | |
32 | ||
33 | node_js: | |
34 | - "5" | |
35 | ||
36 | env: | |
37 | - DB=mysql | |
38 | - DB=pgsql | |
39 | - DB=sqlite | |
40 | ||
41 | matrix: | |
42 | fast_finish: true | |
43 | include: | |
44 | - php: 7.0 | |
45 | env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite | |
46 | allow_failures: | |
47 | - php: 7.1 | |
48 | - php: nightly | |
49 | ||
50 | # exclude v1 branches | |
51 | branches: | |
52 | except: | |
53 | - legacy | |
54 | ||
55 | before_script: | |
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; | |
58 | # xdebug isn't enable for PHP 7.1 | |
59 | - if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi | |
60 | - if [[ $PHP = 5.5 ]]; then composer require "phpunit/phpunit:4.*" --no-update; fi; | |
61 | - composer self-update --no-progress | |
62 | - if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; | |
63 | ||
64 | install: | |
65 | - if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.7; fi; | |
66 | - if [[ $ASSETS = build ]]; then npm install -g npm@latest; fi; | |
67 | - if [[ $ASSETS = build ]]; then npm install; fi; | |
68 | ||
69 | before_install: | |
70 | - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; | |
71 | ||
72 | script: | |
73 | - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist | |
74 | - ant prepare-$DB | |
75 | - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then phpunit -v ; fi; | |
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; | |
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 src/Wallabag/UserBundle/Resources/translations -v ; fi; | |
80 | - if [[ $ASSETS = build ]]; then ./node_modules/grunt-cli/bin/grunt tests; fi; |