X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=.travis.yml;h=78a2b7d735d0e942c7da568c09504f8786820d9e;hb=01e43982ae4b9a61ddfdbe92349eb309f1aaecdb;hp=973860569dad9a636e08c5981035e9c48ffe5522;hpb=e758226c91935a1df2b6fd3ed1f18922d8bfb45b;p=lhc%2Fweb%2Fwiklou.git diff --git a/.travis.yml b/.travis.yml index 973860569d..78a2b7d735 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,17 +8,33 @@ # language: php + +# Use fast containers instead of the slower sudo-enabled VMs: +sudo: false +# Use Ubuntu 14 Trusty (not Ubuntu 12 Precise) +# +# - Required in order to use HHVM 3.6 or higher. +# - Required for non-buggy xml library for XmlTypeCheck/UploadBaseTest (T75176). +dist: trusty + matrix: fast_finish: true include: - - env: dbtype=mysql + # On Trusty, mysql user 'travis' doesn't have create database rights + # Postgres has no user called 'root'. + - env: dbtype=mysql dbuser=root php: 5.5 - - env: dbtype=postgres + - env: dbtype=postgres dbuser=travis php: 5.5 - - env: dbtype=mysql - php: hhvm - - env: dbtype=mysql + # https://docs.travis-ci.com/user/languages/php#HHVM-versions + - env: dbtype=mysql dbuser=root + php: hhvm-3.12 + - env: dbtype=mysql dbuser=root + php: hhvm-3.18 + - env: dbtype=mysql dbuser=root php: 7 + - env: dbtype=mysql dbuser=root + php: 7.1 services: - mysql @@ -26,15 +42,17 @@ services: branches: # Test changes in master and arbitrary Travis CI branches only. # The latter allows developers to enable Travis CI in their GitHub fork of - # wikimedia/mediawiki and then push changes they like to test to branches like + # wikimedia/mediawiki and then push changes for testing to branches like # "travis-ci/test-this-awesome-change". only: - master - /^travis-ci\/.*$/ -before_install: - - sudo apt-get install -qq djvulibre-bin tidy - - composer self-update --quiet --no-interaction +addons: + apt: + packages: + - djvulibre-bin + - tidy before_script: - composer install --prefer-source --quiet --no-interaction @@ -44,7 +62,7 @@ before_script: --pass travis --dbtype "$dbtype" --dbname traviswiki - --dbuser travis + --dbuser "$dbuser" --dbpass "" --scriptpath "/w"