blob: d61061bac57940d4d92a26549f6d38dc0061bd0b (
plain)
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
|
language: perl
perl:
- 5.10
- 5.12
env:
- TEST_SUITE=sanity
- TEST_SUITE=docs
- TEST_SUITE=webservices DB=mysql
- TEST_SUITE=selenium DB=mysql
- TEST_SUITE=webservices DB=pg
- TEST_SUITE=selenium DB=pg
matrix:
exclude:
- perl: 5.12
env: TEST_SUITE=docs
- perl: 5.12
env: TEST_SUITE=webservices DB=mysql
- perl: 5.12
env: TEST_SUITE=selenium DB=mysql
- perl: 5.10
env: TEST_SUITE=webservices DB=pg
- perl: 5.12
env: TEST_SUITE=selenium DB=pg
before_install:
- git clone https://github.com/bugzilla/qa.git -b 4.4 qa
install: true
script: ./qa/travis.sh
after_failure:
- sudo cat /var/log/apache2/error.log
notifications:
on_success: change
on_failure: always
irc: "irc.mozilla.org#qa-bugzilla"
email:
recipients:
- dkl@mozilla.com
|