1 # Travis CI build configuration for MediaWiki
2 # <https://travis-ci.org/wikimedia/mediawiki-core>
4 # The Wikimedia Foundation uses a self-hosted Jenkins instance to run unit
5 # tests, but it tests code against the version of PHP that is deployed on
6 # Wikimedia's production cluster. This Travis CI configuration is designed to
7 # complement that setup by testing MediaWiki on travis
29 # Test changes in master and in Wikimedia's production branches.
35 - sudo apt-get install -qq djvulibre-bin tidy
38 # Initialise submodules, in case we're testing a Wikimedia production branch.
39 - git submodule update --init --recursive
40 # Travis CI's HHVM environment provides PHPUnit as a phar file, but
41 # MediaWiki's test suite only works if individual PHPUnit files are
42 # actual files on disk (bug 58881).
43 - composer require 'phpunit/phpunit=3.7.*' --prefer-source
45 php maintenance/install.php testwiki admin
54 if [ "$TRAVIS_PHP_VERSION" = "hhvm" ];
57 -d include_path=".$(printf ':%s' vendor/phpunit/*)" \
58 -d date.timezone="Etc/UTC" \
59 tests/phpunit/phpunit.php
61 php tests/phpunit/phpunit.php \
62 --with-phpunitdir ./vendor/phpunit/phpunit