X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=0e72d207230207a7048f2adbf05d732b5d439a22;hb=5ecdfcd041767c9e3244a92bb0a6cc3c3f80fea3;hp=5f0abe8715a5afdd8dcfe153a00a1589ac114d86;hpb=dfad9ba0f94562d81b2002b15a5bfd52b9dcba38;p=github%2Fwallabag%2Fwallabag.git diff --git a/.travis.yml b/.travis.yml index 5f0abe87..0e72d207 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 + - 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;