forked from SemanticMediaWiki/SemanticExtraSpecialProperties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (32 loc) · 806 Bytes
/
.travis.yml
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
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
language: php
matrix:
fast_finish: true
include:
- env: DB=mysql; MW=1.25.6; TYPE=coverage
php: 5.3
- env: DB=mysql; MW=REL1_27;
php: 5.6
- env: DB=sqlite; MW=1.26.3; SITELANG=ja
php: 5.5
install:
- composer self-update
- bash ./tests/travis/install-mediawiki.sh
- bash ./tests/travis/install-semantic-extra-special-properties.sh
script:
- bash ./tests/travis/run-tests.sh
after_success:
- bash ./tests/travis/upload-coverage-report.sh
notifications:
email:
on_success: change
on_failure: always
irc:
channels:
- "chat.freenode.net#semantic-mediawiki"
on_success: change
on_failure: always
cache:
directories:
- $HOME/.composer/cache