19
19
verbosity : minimal
20
20
skip_branch_with_pr : true
21
21
image : Visual Studio 2019
22
+ clone_script : echo Skip AppVeyor Clone
22
23
23
24
environment :
24
25
global :
@@ -32,7 +33,7 @@ environment:
32
33
PYTHON_DEF : " C:\\ Python38-x64"
33
34
PYTHON_VERSION : " 3.8"
34
35
# Python versions to build wheels for
35
- PYTHONVERS : C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64 C:\Python312-x64
36
+ PYTHONVERS : C:\Python37-x64 C:\ Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64 C:\Python312-x64 C:\Python313 -x64
36
37
PYTHON_ARCH : " 64"
37
38
38
39
install :
@@ -45,6 +46,17 @@ install:
45
46
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
46
47
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
47
48
throw "There are newer queued builds for this pull request, failing early." }
49
+
50
+ # Git checkout
51
+ - git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f"
52
+ - git config --global filter.lfs.process "git-lfs filter-process --skip"
53
+ - git init %APPVEYOR_BUILD_FOLDER%
54
+ - cd %APPVEYOR_BUILD_FOLDER%
55
+ - git remote add origin https://github.com/%APPVEYOR_REPO_NAME%.git
56
+ - git fetch -q origin %APPVEYOR_REPO_COMMIT%
57
+ - git fetch --tags
58
+ - git checkout -qf %APPVEYOR_REPO_COMMIT%
59
+
48
60
- set OPENSSL_DIR="C:\OpenSSL-v34-Win64"
49
61
- set VCLIBDIR=%WINDIR%\System32
50
62
- cp %VCLIBDIR%/vcruntime140.dll ssh/
@@ -60,11 +72,6 @@ install:
60
72
# do not cause a version change.
61
73
- " %PYTHON_DEF%\\ python.exe ci/appveyor/fix_version.py ."
62
74
- mv -f .git .git.bak
63
- - 7z x ci\appveyor\zlib1211.zip
64
- # - appveyor DownloadFile http://web.mit.edu/kerberos/dist/kfw/4.1/kfw-4.1-amd64.msi
65
- # - msiexec /i kfw-4.1-amd64.msi /passive /qn
66
- # - ps: ls "C:\Program Files\MIT\Kerberos\"
67
- # - cp "C:\Program Files\MIT\Kerberos\*.dll" ssh/
68
75
- ps : ls ssh/*.dll
69
76
- ps : ls ssh
70
77
- ps : ls
0 commit comments