summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-07-23 11:16:41 (GMT)
committerGitHub <noreply@github.com>2018-07-23 11:16:41 (GMT)
commit8b96eed0dd13d9dec02421cacfa021d457ba2d80 (patch)
tree77c78bcd5b69e3203f004372722b83ceab91df7d /.github
parent7a3056fa7dd1223fe7112e53b236c43d71f33f64 (diff)
downloadcpython-8b96eed0dd13d9dec02421cacfa021d457ba2d80.zip
cpython-8b96eed0dd13d9dec02421cacfa021d457ba2d80.tar.gz
cpython-8b96eed0dd13d9dec02421cacfa021d457ba2d80.tar.bz2
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.
Diffstat (limited to '.github')
-rw-r--r--.github/appveyor.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/appveyor.yml b/.github/appveyor.yml
index 638540d..e8012f6 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: