forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (36 loc) · 821 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
40
41
42
43
44
45
46
47
48
language: php
# Environment setup and test scripts execution
before_install:
- git submodule update --init --recursive
before_script:
- ./scripts/travis_before_script.sh
script:
- phpunit --bootstrap ./tests/bootstrap.php ./tests/AllTests.php
# What to build, and on which platforms
php:
- 5.3
- 5.4
- 5.5
env:
- DB=mysql
- DB=pgsql
branches:
except:
- master-2.0.x
matrix:
allow_failures:
# Notifications
notifications:
email:
on_success: change
on_failure: always
irc:
on_success: change
on_failure: always
channels:
- "chat.freenode.net#mantisbt"
skip_join: true
template:
- "Build #%{build_number}: %{repository} %{branch} (%{commit}) %{author} - %{message}"
- "Build details: %{build_url}"
- "Code Changes: %{compare_url}"