X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=blobdiff_plain;f=.travis.yml;h=393063439ddf7def288d330a88467304a6d994b3;hp=29ca7dc3a80d925775e5b38b7c2f6814d1b05b28;hb=HEAD;hpb=85b4b6e0cd8c52603e814b86ebf8be3b08671729 diff --git a/.travis.yml b/.travis.yml index 29ca7dc3..06963df9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,34 +1,31 @@ +os: linux +dist: xenial language: php services: - - rabbitmq - - redis - -# faster builds on docker-container setup -sudo: false - -# used for HHVM -addons: - apt: - packages: - - tidy + - mysql + - postgresql + - rabbitmq + - redis # cache vendor dirs cache: apt: true directories: - - vendor - - $HOME/.composer/cache + - $HOME/.composer/cache/files - node_modules - - $HOME/.cache/bower - $HOME/.npm + - $HOME/.yarn-cache + +if: | + type = pull_request OR \ + branch = master php: - - 5.5 - - 5.6 - - 7.0 - 7.1 - - nightly + - 7.2 + - 7.3 + - 7.4 node_js: - "5" @@ -38,41 +35,45 @@ env: - DB=pgsql - DB=sqlite -matrix: +jobs: fast_finish: true include: - - php: 7.0 + - php: 7.3 env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite - allow_failures: - - php: nightly # exclude v1 branches branches: except: - legacy -before_script: +before_install: + - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; - PHP=$TRAVIS_PHP_VERSION - - if [[ ! $PHP = hhvm* ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; - # xdebug isn't enable for PHP 7.1 - - if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi + - echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini + - phpenv config-rm xdebug.ini || echo "xdebug not available" - composer self-update --no-progress - - if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; + # install imagick + - pear config-set preferred_state beta + - pecl channel-update pecl.php.net + - yes | pecl install imagick install: - - if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.7; fi; - - if [[ $ASSETS = build ]]; then npm install -g npm@latest; fi; - - if [[ $ASSETS = build ]]; then npm install; fi; + - if [[ $ASSETS = build ]]; then source ~/.nvm/nvm.sh && nvm install 6.10; fi; + - if [[ $ASSETS = build ]]; then npm install -g yarn@latest; fi; + - if [[ $ASSETS = build ]]; then yarn install; fi; + - composer install -o --no-interaction --no-progress --prefer-dist --no-suggest + - php bin/simple-phpunit install -before_install: - - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; +before_script: + - make prepare DB=$DB + - make fixtures script: - - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist - - ant prepare-$DB - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi; - - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi; + # PHPStan needs PHPUnit to be installed and cache app to be generated + - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then php bin/phpstan analyse src tests --no-progress --level 1 ; fi; + - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix --verbose --dry-run ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/UserBundle/Resources/translations -v ; fi; - - if [[ $ASSETS = build ]]; then ./node_modules/grunt-cli/bin/grunt tests; fi; + - if [[ $ASSETS = build ]]; then yarn run build:prod; fi;