Skip to content

Commit dbaa6f0

Browse files
committed
Auto merge of #4028 - phansch:skip_appveyor_on_pr_pushes, r=phansch
Only run AppVeyor on r+, try and the master branch As it is right now, there is only one worker available in the `rust-lang-libs` AppVeyor project and there are other repos as well that we share this worker with. This has been a problem for us because we sometimes hit a bors timeout if there are too many builds queued up. To improve the situation, I think we could try to use AppVeyor a bit less often. The average PR is not going to break windows related things anyway, so it should be fine to run it on r+/try/master only. changelog: none
2 parents d84d3f8 + 8d7a5fe commit dbaa6f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

appveyor.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ environment:
88
- TARGET: x86_64-pc-windows-msvc
99

1010
branches:
11-
# Don't build these branches
12-
except:
13-
# Used by bors
14-
- trying.tmp
15-
- staging.tmp
11+
# Only build AppVeyor on r+, try and the master branch
12+
only:
13+
- auto
14+
- try
15+
- master
1616

1717
install:
1818
- curl -sSf -o rustup-init.exe https://win.rustup.rs/

0 commit comments

Comments
 (0)