X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=afccce0836fea7f0935ca9c308b3583e13effb90;hb=e011be01701e7f0f2bee9a5de3f062a5ca1b17df;hp=758aa9f40f7c738bfe1a6f24d1e24fc7f01b0316;hpb=a381c373b30ed04001ea31ff5c38e077edacaf18;p=github%2Fshaarli%2FShaarli.git diff --git a/.travis.yml b/.travis.yml index 758aa9f4..afccce08 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,53 @@ -sudo: false -dist: trusty -language: php +dist: bionic + +matrix: + include: + # jobs for each supported php version + - language: php + php: 7.4 + - language: php + php: 7.3 + - language: php + php: 7.2 + - language: php + php: 7.1 + # jobs for frontend builds + - language: node_js + node_js: 10 + cache: + yarn: true + directories: + - $HOME/.cache/yarn + install: + - yarn install + before_script: + - PATH=${PATH//:\.\/node_modules\/\.bin/} + script: + - yarn run build # verify successful frontend builds + - make eslint # javascript static analysis + - make sasslint # linter for SASS syntax + # jobs for documentation builds + - language: python + python: 3.6 + cache: + directories: + - $HOME/.cache/pip + install: + - pip install mkdocs + script: + - mkdocs build --clean + cache: directories: - $HOME/.composer/cache -php: - - 7.2 - - 7.1 - - 7.0 - - 5.6 + install: - - composer self-update - - composer install --prefer-dist - - locale -a + # install/update composer and php dependencies + - composer update --ignore-platform-reqs + before_script: - PATH=${PATH//:\.\/node_modules\/\.bin/} + script: - make clean - make check_permissions