]> granicus.if.org Git - python/commitdiff
AppVeyor: build Python in 64-bit mode (GH-8363)
authorVictor Stinner <vstinner@redhat.com>
Mon, 23 Jul 2018 11:16:41 +0000 (13:16 +0200)
committerGitHub <noreply@github.com>
Mon, 23 Jul 2018 11:16:41 +0000 (13:16 +0200)
Previously, Python was built in 32-bit mode and so issues specific to
64-bit mode like compiler warnings could be missed.

.github/appveyor.yml

index 638540d46bb9cb3cd8e3adcfa6adf368105d74eb..e8012f69ee5b2e4950b032c766a9dfe86d162313 100644 (file)
@@ -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: