Merge pull request #552 from tahoe-lafs/2974.appveyor-build-config

Remove Appveyor branch builds when there is a related active PR.

Fixes: ticket:2974
This commit is contained in:
Jean-Paul Calderone 2019-02-22 11:02:23 -05:00 committed by GitHub
commit 6f3d8d6e46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 2 deletions

View File

@ -20,9 +20,28 @@ install:
# %PYTHON% has: python.exe
# %PYTHON%\Scripts has: pip.exe, tox.exe (and others installed by bare pip)
# We have a custom "build" system. We don't need MSBuild or whatever.
build: off
# Do not build feature branch with open pull requests. This is documented but
# it's not clear it does anything.
skip_branch_with_pr: true
# This, perhaps, is effective.
branches:
# whitelist
only:
- 'master'
skip_commits:
files:
# The Windows builds are unaffected by news fragments.
- 'newsfragments/*'
# Also, all this build junk.
- '.circleci/*'
- '.lgtm.yml'
- '.travis.yml'
# we run from C:\projects\tahoe-lafs
test_script:
@ -57,4 +76,3 @@ artifacts:
# You can use this step to upload your artifacts to a public website.
# See Appveyor's documentation for more details. Or you can simply
# access your wheels from the Appveyor "artifacts" tab for your build.

1
newsfragments/2974.other Normal file
View File

@ -0,0 +1 @@
The Windows CI configuration has been tweaked.