diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-07-17 18:20:11 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-07-17 18:20:11 +0530 |
commit | bbebd09f8bdc0164166b147e95798e9c35e07fb0 (patch) | |
tree | 323948a9eac370385c86d06f16d1945b508b28bb | |
parent | e307865596274094b582ce851bcd48092d5f6a03 (diff) | |
download | meson-bbebd09f8bdc0164166b147e95798e9c35e07fb0.zip meson-bbebd09f8bdc0164166b147e95798e9c35e07fb0.tar.gz meson-bbebd09f8bdc0164166b147e95798e9c35e07fb0.tar.bz2 |
appveyor: Don't skip doc-only builds
This was a good idea in theory, but in practice it has made Codecov
completely useless because doc-only commits would reduce the coverage
calculated by Codecov and PRs would randomly have messages saying that
the coverage has gone up or down by a random percentage simply because
the windows builds weren't run in the last commit.
Till Codecov also has an option to skip doc-only commits, we cannot
make this change. To skip all CI, you can put "[skip ci]" or
"[ci skip]" in the commit message. This will also work with Codecov.
-rw-r--r-- | .appveyor.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 08143e8..a78a328 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -49,10 +49,6 @@ branches: only: - master -skip_commits: - files: - - docs/**/* - install: - cmd: set "ORIG_PATH=%PATH%" # Boost 1.56.0: https://www.appveyor.com/docs/build-environment/#boost |