diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-03-11 21:47:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-11 21:47:13 (GMT) |
commit | a951c554ce4adcaa3af85b8e5fb56df9c46e9287 (patch) | |
tree | cb1dd691ad71cb28b14db211c30f261566adaac4 | |
parent | 5f63884b724f416c62a81cf5b2ab6d761f50d365 (diff) | |
download | cpython-a951c554ce4adcaa3af85b8e5fb56df9c46e9287.zip cpython-a951c554ce4adcaa3af85b8e5fb56df9c46e9287.tar.gz cpython-a951c554ce4adcaa3af85b8e5fb56df9c46e9287.tar.bz2 |
Only trigger AppVeyor on code or config changes (GH-611 backport) (GH-621)
-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 e44b5b0..60c2dae 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 --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/ |