From 9086730dc43329d2bb11f92078e2eb1f6b040421 Mon Sep 17 00:00:00 2001 From: Philipp Krones Date: Mon, 22 Oct 2018 17:30:01 +0200 Subject: [PATCH] Add branch configuration to appveyor.yml --- appveyor.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index f50d1e88a..8ab4a9944 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,16 @@ environment: #- TARGET: i686-pc-windows-msvc #- TARGET: x86_64-pc-windows-gnu - TARGET: x86_64-pc-windows-msvc - + +branches: + only: + # This is where pull requests from "bors r+" are built. + - staging + # This is where pull requests from "bors try" are built. + - trying + # Also build pull requests. + - master + install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly