X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=.travis.yml;h=2d07596ee558de1dae7569de53ea11ce479ae6d9;hb=69c71cc45eba02fb0cbe3a46b2892f4e9dc0cb5d;hp=6e076533211907f2301110d97d27ae70ab08ff5b;hpb=1aad5d4bf7c0bb72fc59de00a6c8998f37abde4b;p=lhc%2Fweb%2Fwiklou.git diff --git a/.travis.yml b/.travis.yml index 6e07653321..2d07596ee5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,18 +8,29 @@ # language: php -php: - - hhvm-nightly - - 5.3 +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 + php: 7 services: - mysql branches: - # Test changes in master and in Wikimedia's production 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 + # "travis-ci/test-this-awesome-change". only: - master - - /^wmf\/.*$/ + - /^travis-ci\/.*$/ before_install: - sudo apt-get install -qq djvulibre-bin tidy @@ -27,9 +38,11 @@ before_install: before_script: - composer install --prefer-source --quiet --no-interaction + - if [ "$dbtype" = postgres ]; then psql -c "CREATE DATABASE traviswiki WITH OWNER travis;" -U postgres; fi - > php maintenance/install.php traviswiki admin --pass travis + --dbtype "$dbtype" --dbname traviswiki --dbuser travis --dbpass ""