summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: bede4a72f0187d30c1d5392312963ffe8e6488a4 (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
44
45
46
47
48
49
language: perl

addons:
  postgresql: "9.1"

perl:
  - 5.10
  - 5.12
  - 5.14
  - 5.16

env:
  - TEST_SUITE=sanity
  - TEST_SUITE=docs

matrix:
  exclude:
    - perl: 5.10
      env: TEST_SUITE=docs
    - perl: 5.12
      env: TEST_SUITE=docs
    - perl: 5.14
      env: TEST_SUITE=docs

before_install:
  - git clone https://github.com/bugzilla/qa.git -b master qa

install: true

before_script:
  - mysql -u root mysql -e "GRANT ALL PRIVILEGES ON *.* TO bugs@localhost IDENTIFIED BY 'bugs'; FLUSH PRIVILEGES;"
  - psql -c "CREATE USER bugs WITH PASSWORD 'bugs' CREATEDB;" -U postgres

script: ./qa/travis.sh

after_failure:
  - sudo cat /var/log/apache2/error.log

notifications:
  irc:
    channels:
      - "irc.mozilla.org#qa-bugzilla"
    template:
      - "Bugzilla %{branch} : %{author} : %{message}"
      - "Commit Message : %{commit_message}"
      - "Commit Link : %{compare_url}"
      - "Build Link : %{build_url}"
  on_success: change
  on_failure: always