From: David Soria Parra Date: Sun, 10 Jun 2012 14:15:34 +0000 (+0400) Subject: Make travis silent X-Git-Tag: php-5.3.15RC1~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f464ffd78046d31eb4bbd6d44dced3cd39d12c69;p=php 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. --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..a375a359dd --- /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