From 56a05583ae395bdd81c64b3f637a0827d7e99124 Mon Sep 17 00:00:00 2001
From: Richard van der Hoff <richard@matrix.org>
Date: Wed, 24 Oct 2018 14:43:29 +0100
Subject: [PATCH] Disable travis-ci branch builds for most branches

(We really don't need to kick off 10 builds for the branch as well as 10 for
the PR)
---
 .travis.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 7ee1a278db..1be94515f2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,12 @@ language: python
 # tell travis to cache ~/.cache/pip
 cache: pip
 
+# only build branches we care about (PRs are built seperately)
+branches:
+  only:
+    - master
+    - develop
+
 before_script:
   - git remote set-branches --add origin develop
   - git fetch origin develop
-- 
GitLab