From 7c6963dd64b89fd63810d694da90762d7273aaf7 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 1 May 2014 21:21:47 +0000 Subject: Bug 983275 - Switch Bugzilla's CI testing from Tinderbox to travis-ci --- .travis.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..7f250bbfa --- /dev/null +++ b/.travis.yml @@ -0,0 +1,39 @@ +language: perl +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/dklawren/qa.git -b 4.4 qa + +install: true + +script: ./qa/travis.sh + +after_failure: + - sudo cat /var/log/apache2/error.log + +notifications: + on_success: never + on_failure: always + irc: "irc.mozilla.org#qa-bugzilla" + email: + recipients: + - dkl@mozilla.com + on_success: change + on_failure: always -- cgit v1.2.3-24-g4f1b