X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=17c3abafc6fc325458438c4434c010dcc0e1a705;hb=f49d9ca383c9f8a1bc426cfabf6b1cea53ea26b4;hp=5f0abe8715a5afdd8dcfe153a00a1589ac114d86;hpb=1e18360cc7d6b7987bffc4ecd067d0b3aee85bb1;p=github%2Fwallabag%2Fwallabag.git diff --git a/.travis.yml b/.travis.yml index 5f0abe87..17c3abaf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,13 @@ addons: # cache vendor dirs cache: + apt: true directories: - vendor - $HOME/.composer/cache + - node_modules + - $HOME/.cache/bower + - $HOME/.npm php: - 5.5 @@ -21,13 +25,21 @@ php: - 7.0 - hhvm +node_js: + - "5" + env: - - DB=mysql - - DB=pgsql - - DB=sqlite + - DB=mysql ASSETS=nobuild + - DB=pgsql ASSETS=nobuild + - DB=sqlite ASSETS=nobuild matrix: fast_finish: true + include: + - php: 7.0 + env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run DB=sqlite ASSETS=nobuild + - php: 7.0 + env: DB=sqlite ASSETS=build exclude: - php: hhvm env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency @@ -37,8 +49,7 @@ matrix: # exclude v1 branches branches: except: - - master - - dev + - legacy before_script: - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; @@ -46,10 +57,16 @@ before_script: - composer self-update --no-progress - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; +install: + - if [[ $ASSETS != nobuild ]]; then source ~/.nvm/nvm.sh && nvm install 5.0; fi; + - if [[ $ASSETS != nobuild ]]; then npm install -g npm@latest; fi; + before_install: - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; script: - - travis_wait composer update --no-interaction --no-progress + - travis_wait bash install.sh - ant prepare-$DB - - bin/phpunit -v + - phpunit -v + - 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;