summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Soria Parra <dsp@php.net>2012-06-10 18:15:34 +0400
committerDavid Soria Parra <dsp@php.net>2012-06-10 18:17:37 +0400
commitf464ffd78046d31eb4bbd6d44dced3cd39d12c69 (patch)
tree38794af369ec56c1f720f485a0ad31e71e2b0bfe
parentcda14b995c155748f97f6253ff8e2113e3f3e174 (diff)
downloadphp-git-f464ffd78046d31eb4bbd6d44dced3cd39d12c69.tar.gz
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.
-rw-r--r--.travis.yml10
1 files changed, 10 insertions, 0 deletions
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