appveyor: Don't run appveyor for docs only changes

Appveyor takes a *long* time to run (~45 minutes per commit currently),
and it does no parallelism. It is possible to skip merge requests that
only touch documentation, this commit adds that support.

Because Appveyor (and Travis) test a merge of the pull request into
master and not the branch itself this will only skip builds that only
touch docs, and not pull requests that do both doc and non-doc changes.
pull/1784/head
Dylan Baker 8 years ago committed by Jussi Pakkanen
parent 1a87c967f1
commit 99c1038988
  1. 4
      .appveyor.yml

@ -49,6 +49,10 @@ branches:
only:
- master
skip_commits:
files:
- docs/**/*
install:
# Use the x86 python only when building for x86 for the cpython tests.
# For all other archs (including, say, arm), use the x64 python.

Loading…
Cancel
Save