From f464ffd78046d31eb4bbd6d44dced3cd39d12c69 Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Sun, 10 Jun 2012 18:15:34 +0400 Subject: [PATCH] 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. --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000..a375a359dd1 --- /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