Commit:    f464ffd78046d31eb4bbd6d44dced3cd39d12c69
Author:    David Soria Parra <d...@php.net>         Sun, 10 Jun 2012 18:15:34 
+0400
Parents:   cda14b995c155748f97f6253ff8e2113e3f3e174
Branches:  PHP-5.3 PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=f464ffd78046d31eb4bbd6d44dced3cd39d12c69

Log:
Make travis silent

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.

Changed paths:
  A  .travis.yml


Diff:
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a375a35
--- /dev/null
+++ b/.travis.yml
@@ -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


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to