appveyor: enable 32-bit, build zipfile of wheels as artifact

This commit is contained in:
Brian Warner 2016-12-14 14:18:10 -08:00
parent d23db295e6
commit 2cd30f6e72

View File

@ -6,7 +6,7 @@ environment:
# For Python versions available on Appveyor, see # For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python # http://www.appveyor.com/docs/installed-software#python
#- PYTHON: "C:\\Python27" - PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python27-x64"
# DISTUTILS_USE_SDK: "1" # DISTUTILS_USE_SDK: "1"
# TOX_TESTENV_PASSENV: "DISTUTILS_USE_SDK INCLUDE LIB" # TOX_TESTENV_PASSENV: "DISTUTILS_USE_SDK INCLUDE LIB"
@ -45,7 +45,8 @@ after_test:
artifacts: artifacts:
# bdist_wheel puts your built wheel in the dist directory # bdist_wheel puts your built wheel in the dist directory
# "pip wheel -w dist ." puts all the dependency wheels there too # "pip wheel -w dist ." puts all the dependency wheels there too
- path: dist\* # this gives us a zipfile with everything
- path: dist
#on_success: #on_success:
# You can use this step to upload your artifacts to a public website. # You can use this step to upload your artifacts to a public website.