X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=.travis.yml;h=baf7f033e8964d1eae48889db13c7fdea11d6565;hb=6517f21f0fc7e013e0af896ba6261b35c3cf4e99;hp=2d07596ee558de1dae7569de53ea11ce479ae6d9;hpb=bacc11eb30ddf01624d5448f432b96afdae67c28;p=lhc%2Fweb%2Fwiklou.git diff --git a/.travis.yml b/.travis.yml index 2d07596ee5..baf7f033e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,18 +7,35 @@ # complement that setup by testing MediaWiki on travis # language: php +# Use the slower sudo-enabled VMs instead of fast containers: +# - Package 'djvulibre-bin' is not yet whitelisted for trusty containers. +# https://github.com/travis-ci/apt-package-whitelist/issues/4036 +sudo: required +# Use Trusty instead of Travis default (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 - php: 5.3 - - env: dbtype=postgres - php: 5.3 - - env: dbtype=mysql - php: hhvm - - 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 dbuser=travis + php: 5.5 + - env: dbtype=mysql dbuser=root + # https://docs.travis-ci.com/user/languages/php#HHVM-versions + # https://github.com/travis-ci/travis-ci/issues/7368 + php: hhvm-3.12 + - env: dbtype=mysql dbuser=root php: 7 + allow_failures: + # Postgres support for unit tests is still buggy + # https://phabricator.wikimedia.org/T75174 + - env: dbtype=postgres dbuser=travis + php: 5.5 services: - mysql @@ -26,15 +43,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 +63,7 @@ before_script: --pass travis --dbtype "$dbtype" --dbname traviswiki - --dbuser travis + --dbuser "$dbuser" --dbpass "" --scriptpath "/w" @@ -55,7 +74,6 @@ notifications: email: false irc: channels: - - "chat.freenode.net#mediawiki-core" - "chat.freenode.net#mediawiki-feed" on_success: change on_failure: change