Skip to content

Commit 8b96eed

Browse files
authored
AppVeyor: build Python in 64-bit mode (GH-8363)
Previously, Python was built in 32-bit mode and so issues specific to 64-bit mode like compiler warnings could be missed.
1 parent 7a3056f commit 8b96eed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ before_build:
2828
2929
3030
build_script:
31-
- cmd: PCbuild\build.bat -e
32-
- cmd: PCbuild\win32\python.exe -m test.pythoninfo
31+
- cmd: PCbuild\build.bat -e -p x64
32+
- cmd: PCbuild\amd64\python.exe -m test.pythoninfo
3333
test_script:
34-
- cmd: PCbuild\rt.bat -q -uall -u-cpu -u-largefile -rwW --slowest --timeout=1200 --fail-env-changed -j0
34+
- cmd: PCbuild\rt.bat -x64 -q -uall -u-cpu -u-largefile -rwW --slowest --timeout=1200 --fail-env-changed -j0
3535
environment:
3636
HOST_PYTHON: C:\Python36\python.exe
3737
image:

0 commit comments

Comments
 (0)