diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-05-10 15:40:39 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-11 22:38:36 +0300 |
commit | 99c103898831f2517c86ab852c172dd9580f0a78 (patch) | |
tree | 904e9d52cab5f6e9ea1c8c47fdfe12236e465bfc /.appveyor.yml | |
parent | 1a87c967f18b6b212f2c7326f2382123cf43c6bc (diff) | |
download | meson-99c103898831f2517c86ab852c172dd9580f0a78.zip meson-99c103898831f2517c86ab852c172dd9580f0a78.tar.gz meson-99c103898831f2517c86ab852c172dd9580f0a78.tar.bz2 |
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.
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 766015f..708e1b1 100644 --- a/.appveyor.yml +++ b/.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. |