# Travis CI build configuration for MediaWiki # # # The Wikimedia Foundation uses a self-hosted Jenkins instance to run unit # tests, but it tests code against the version of PHP that is deployed on # Wikimedia's production cluster. This Travis CI configuration is designed to # complement that setup by testing MediaWiki on travis # language: php php: - hhvm-nightly - 5.3 services: - mysql branches: # Test changes in master and in Wikimedia's production branches. only: - master - /^wmf\/.*$/ before_install: - sudo apt-get install -qq djvulibre-bin tidy - composer self-update --quiet --no-interaction before_script: - composer install --prefer-source --quiet --no-interaction - > php maintenance/install.php traviswiki admin --pass travis --dbname traviswiki --dbuser travis --dbpass "" --scriptpath "/w" script: - php tests/phpunit/phpunit.php notifications: email: false irc: channels: - "chat.freenode.net#mediawiki-core" - "chat.freenode.net#mediawiki-feed" on_success: change on_failure: change skip_join: true