]> granicus.if.org Git - php/commitdiff
Make travis silent
authorDavid Soria Parra <dsp@php.net>
Sun, 10 Jun 2012 14:15:34 +0000 (18:15 +0400)
committerDavid Soria Parra <dsp@php.net>
Sun, 10 Jun 2012 14:17:37 +0000 (18:17 +0400)
Travis will always build all branches. As we just have a .travis.yml
on master, travis will go ahead and checkout PHP-5.3. It fails and
then sends mails. We really don't want to get spammed, so we add
a .travis.yml that is just silent.

.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..a375a35
--- /dev/null
@@ -0,0 +1,10 @@
+language: php
+
+php:
+    # We only specify one version so we only get one worker
+    - 5.4
+
+notifications:
+    email: false
+
+script: exit 0