aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: e0a45a1ec1d376a5de58692c2415164680de01c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Travis CI build configuration for MediaWiki
# <https://travis-ci.org/wikimedia/mediawiki-core>
#
# 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
  - 5.3
  - 5.4
  - 5.5
  - 5.6

matrix:
  allow_failures:
    - php: 5.3
    - php: 5.4
    - php: 5.5
    - php: 5.6

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

before_script:
  # Initialise submodules, in case we're testing a Wikimedia production branch.
  - git submodule update --init --recursive
  # Travis CI's HHVM environment provides PHPUnit as a phar file, but
  # MediaWiki's test suite only works if individual PHPUnit files are
  # actual files on disk (bug 58881).
  - composer require 'phpunit/phpunit=3.7.*' --prefer-source
  - >
      php maintenance/install.php testwiki admin
      --pass travis
      --dbname traviswiki
      --dbuser travis
      --dbpass ""
      --scriptpath "/w"

script:
  - >
      if [ "$TRAVIS_PHP_VERSION" = "hhvm" ];
      then
        hhvm --php \
        -d include_path=".$(printf ':%s' vendor/phpunit/*)" \
        -d date.timezone="Etc/UTC" \
        tests/phpunit/phpunit.php
      else
        php tests/phpunit/phpunit.php \
        --with-phpunitdir ./vendor/phpunit/phpunit
      fi