diff --git a/.travis.yml b/.travis.yml index 04027833e..09972a12f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,13 +10,11 @@ os: sudo: false 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 + # Don't build these branches + except: + # Used by bors + - trying.tmp + - staging.tmp env: global: diff --git a/appveyor.yml b/appveyor.yml index 8ab4a9944..fb0b326c7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,16 +6,14 @@ 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 - + # Don't build these branches + except: + # Used by bors + - trying.tmp + - staging.tmp + install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly