mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-15 05:26:47 +00:00
Merge #3359
3359: ci: allow all branches except trying.tmp and staging.tmp to be built r=phansch a=matthiaskrgr r? @flip1995 The problem was that with the current configuration, if I made a branch `feature1` and pushed it to travis to have it checked before making a PR, travis would skip it because it only built the 3 branches that were specified when setting up bors. The change allows all branch names to be build by default again, except for travis.tmp. The gh-pages branch is skipped as per travis-ci defaults: https://docs.travis-ci.com/user/customizing-the-build/#safelisting-or-blocklisting-branches Co-authored-by: Matthias Krüger <matthias.krueger@famsik.de>
This commit is contained in:
commit
5e1c736600
12
.travis.yml
12
.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:
|
||||
|
16
appveyor.yml
16
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
|
||||
|
Loading…
Reference in New Issue
Block a user