]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
No longer need CI testing for 4.0 branch as it is EOL 4.0
authorDavid Lawrence <dkl@mozilla.com>
Tue, 15 Sep 2015 20:50:37 +0000 (20:50 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Tue, 15 Sep 2015 20:50:37 +0000 (20:50 +0000)
.travis.yml [deleted file]

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644 (file)
index 7aa7e8e..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-language: perl
-
-addons:
-  postgresql: "9.1"
-
-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.10
-      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.0 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"
-      - "irc.mozilla.org#bugzilla"
-    template:
-      - "Bugzilla %{branch} : %{author} : %{message}"
-      - "Commit Message : %{commit_message}"
-      - "Commit Link : %{compare_url}"
-      - "Build Link : %{build_url}"
-  on_success: change
-  on_failure: always