summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2019-09-11 15:39:52 +0100
committerGitHub <noreply@github.com>2019-09-11 15:39:52 +0100
commite58e18dfcd2e638773990fb5f307d2b97b848031 (patch)
tree23e12b9f0370b9d26fd6daf403abe5efcf21aed0 /.github
parentc2119399488a297275db7f0590cff957b6ce8a2e (diff)
downloadcpython-git-e58e18dfcd2e638773990fb5f307d2b97b848031.tar.gz
[3.7] Turn off AppVeyor CI (GH-15929) (GH-15943)
(cherry picked from commit 6f55b0394bce8e64a59c61f465fec8079a00e55c)
Diffstat (limited to '.github')
-rw-r--r--.github/appveyor.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.github/appveyor.yml b/.github/appveyor.yml
deleted file mode 100644
index 6662732326..0000000000
--- a/.github/appveyor.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-version: 3.7build{build}
-clone_depth: 5
-branches:
- only:
- - master
- - /\d\.\d/
- - 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 {
- git fetch -q origin +refs/heads/$env:APPVEYOR_REPO_BRANCH
- $mergebase = git merge-base HEAD FETCH_HEAD
- $changes = git diff --name-only HEAD $mergebase | grep -vE '(\.rst$)|(^Doc)|(^Misc)'
- If (!$changes) {
- echo 'Only docs were updated, stopping build process.'
- Exit-AppveyorBuild
- } else {
- echo 'Doing full build due to non-doc changes in these files:'
- echo $changes
- }
- }
-
-
-build_script:
- - cmd: PCbuild\build.bat -e
- - cmd: PCbuild\win32\python.exe -m test.pythoninfo
-test_script:
- - cmd: PCbuild\rt.bat -q -uall -u-cpu -u-largefile -rwW --slowest --timeout=1200 --fail-env-changed -j0
-environment:
- HOST_PYTHON: C:\Python36\python.exe
-image:
- - Visual Studio 2017