diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-03-11 14:55:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-11 14:55:35 -0600 |
commit | c5d3bfea0b0bba34bc3cd517a12153e189c80556 (patch) | |
tree | 3a84afc86bc76f48a4af238a1309e61a36b87b68 /.github | |
parent | d3b8f98696b905367da3975f73b482bac380b51c (diff) | |
download | cpython-git-c5d3bfea0b0bba34bc3cd517a12153e189c80556.tar.gz |
Only trigger AppVeyor on code or config changes (GH-611)
Diffstat (limited to '.github')
-rw-r--r-- | .github/appveyor.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/appveyor.yml b/.github/appveyor.yml index c348c53615..45d8ffd80c 100644 --- a/.github/appveyor.yml +++ b/.github/appveyor.yml @@ -4,3 +4,20 @@ build_script: - cmd: PCbuild\build.bat -e test_script: - cmd: PCbuild\rt.bat -q -uall -rwW --slowest --timeout=1200 -j0 + +# Only trigger AppVeyor if actual code or its configuration changes +only_commits: + files: + - .github/appveyor.yml + - .gitattributes + - Grammar/ + - Include/ + - Lib/ + - Modules/ + - Objects/ + - PC/ + - PCBuild/ + - Parser/ + - Programs/ + - Python/ + - Tools/ |