[Python-checkins] AppVeyor: build Python in 64-bit mode (GH-8363)

Victor Stinner webhook-mailer at python.org
Mon Jul 23 07:16:46 EDT 2018


https://github.com/python/cpython/commit/8b96eed0dd13d9dec02421cacfa021d457ba2d80
commit: 8b96eed0dd13d9dec02421cacfa021d457ba2d80
branch: master
author: Victor Stinner <vstinner at redhat.com>
committer: GitHub <noreply at github.com>
date: 2018-07-23T13:16:41+02:00
summary:

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.

files:
M .github/appveyor.yml

diff --git a/.github/appveyor.yml b/.github/appveyor.yml
index 638540d46bb9..e8012f69ee5b 100644
--- a/.github/appveyor.yml
+++ b/.github/appveyor.yml
@@ -28,10 +28,10 @@ before_build:
 
 
 build_script:
-  - cmd: PCbuild\build.bat -e
-  - cmd: PCbuild\win32\python.exe -m test.pythoninfo
+  - cmd: PCbuild\build.bat -e -p x64
+  - cmd: PCbuild\amd64\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
+  - cmd: PCbuild\rt.bat -x64 -q -uall -u-cpu -u-largefile -rwW --slowest --timeout=1200 --fail-env-changed -j0
 environment:
   HOST_PYTHON: C:\Python36\python.exe
 image:



More information about the Python-checkins mailing list