From 2b4ac35ef9d2c8db81ca46fba0503acf4b920303 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Sat, 30 Dec 2017 14:45:11 -0500 Subject: [PATCH] ci: only run CI on master and auto --- .travis.yml | 4 ++++ appveyor.yml | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c3d5321e0c..f1a1d71c0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,3 +26,7 @@ env: notifications: email: on_success: never +branches: + only: + - master + - auto diff --git a/appveyor.yml b/appveyor.yml index 0933ad8cc3..c67ab0efda 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,8 +10,10 @@ install: - SET PATH=%PATH%;C:\MinGW\bin - rustc -V - cargo -V - build: false - test_script: - cargo test --verbose --jobs 4 +branches: + only: + - master + - auto