Skip to content

Commit

Permalink
appveyor-ci: build only branch, PRs, and tags. ignore some files.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterMatula committed Feb 14, 2018
1 parent d7cf5dc commit 0747ae3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,36 @@ test_script:
- cmd: cat hello.c
- cmd: grep "int main(int argc, char \*\* argv)" hello.c

branches:
only:
# Pushes and PRs to the master branch.
- master
# Version tags.
- /^v?\d+\.\d+.*$/

skip_commits:
files:
# Exact files.
- .travis.yml
- CITATION
- Dockerfile
- Dockerfile.dev
- LICENSE
- LICENSE-THIRD-PARTY
# All .gitignore files within repository.
- **/.gitignore
# All *.md files within repository.
- **/*.md
# All README files within repository.
- **/README
- **/README.txt
- **/readme
- **/readme.txt
# All files within doc directory, recursive.
- doc/**/*
# All files within scripts/type_extractor directory, recursive.
- scripts/type_extractor/**/*

notifications:
- provider: Email
to:
Expand Down

0 comments on commit 0747ae3

Please sign in to comment.