]> granicus.if.org Git - python/commitdiff
Add short-circuit for doc changes to AppVeyor (GH-5519)
authorZachary Ware <zachary.ware@gmail.com>
Sun, 11 Feb 2018 17:19:51 +0000 (11:19 -0600)
committerGitHub <noreply@github.com>
Sun, 11 Feb 2018 17:19:51 +0000 (11:19 -0600)
.github/appveyor.yml

index 129c119df61f286d98a1d6033f6e701de1642e2a..5239d6ccc17cd99a8af01604298054523046d5e4 100644 (file)
@@ -7,11 +7,27 @@ branches:
     - buildbot-custom
 cache:
   - externals -> PCbuild
+before_build:
+  - ps: |+
+      if ($env:APPVEYOR_RE_BUILD) {
+        echo 'Doing full build due to re-build request.'
+      } elseif (!$env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) {
+        echo 'Not a PR, doing full build.'
+      } else {
+        $mergebase = git merge-base $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT $env:APPVEYOR_REPO_BRANCH
+        $changes = git diff --name-only HEAD $mergebase | grep -vE '(\.rst$)|(^Doc)|(^Misc)'
+        If (!$changes) {
+          echo 'Only docs were updated, stopping build process.'
+          Exit-AppveyorBuild
+        }
+      }
+
+
 build_script:
-- cmd: PCbuild\build.bat -e
-- cmd: PCbuild\win32\python.exe -m test.pythoninfo
+  - cmd: PCbuild\build.bat -e
+  - cmd: PCbuild\win32\python.exe -m test.pythoninfo
 test_script:
-- cmd: PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 --fail-env-changed -j0
+  - cmd: PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 --fail-env-changed -j0
 environment:
   HOST_PYTHON: C:\Python36\python.exe
 image: