From a994c297f8c16e54c0665dc3b8b75d3e6c88e797 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Tue, 18 Apr 2017 12:44:28 -0400 Subject: [PATCH 1/2] Only trigger branch builds on master and release branches --- .travis.yml | 5 +++++ appveyor.yml | 5 +++++ circle.yml | 4 ++++ 3 files changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index 6c3f25c49..fa5f84f18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,11 @@ git: depth: 10 +branches: + only: + - master + - /^[0-9.]+-releases$/ + matrix: include: - os: linux diff --git a/appveyor.yml b/appveyor.yml index 410f4ecf5..5259aacb0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,11 @@ skip_tags: true clone_folder: c:\projects\atom clone_depth: 10 +branches: + only: + - master + - /^[0-9.]+-releases$/ + platform: - x64 - x86 diff --git a/circle.yml b/circle.yml index 5890c45e9..b29f3c090 100644 --- a/circle.yml +++ b/circle.yml @@ -8,6 +8,10 @@ machine: version: 7.3 general: + branches: + only: + - master + - /^[0-9.]+-releases$/ artifacts: - out/atom-mac.zip - out/atom-mac-symbols.zip From 392c1d54100638c04dde704400ec3720184b53c4 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Thu, 20 Apr 2017 09:25:03 -0400 Subject: [PATCH 2/2] Turn Circle CI back on --- circle.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/circle.yml b/circle.yml index b29f3c090..5890c45e9 100644 --- a/circle.yml +++ b/circle.yml @@ -8,10 +8,6 @@ machine: version: 7.3 general: - branches: - only: - - master - - /^[0-9.]+-releases$/ artifacts: - out/atom-mac.zip - out/atom-mac-symbols.zip