Appveyor: 64-bit builds and wheels

Based on http://python-packaging-user-guide.readthedocs.org/en/latest/appveyor/
This commit is contained in:
Marius Gedminas 2015-12-14 09:39:10 +02:00
parent 7795f07b1e
commit 971f658261
2 changed files with 38 additions and 3 deletions

View File

@ -3,12 +3,20 @@ version: build-{build}-{branch}
environment:
matrix:
# http://www.appveyor.com/docs/installed-software#python lists available
# versions
# versions. See http://python-packaging-user-guide.readthedocs.org/en/latest/appveyor/
# for an explanation of the DISTUTILS_USE_SDK environment variable for Python 3.3 and 3.4.
- PYTHON: "C:\\Python26"
- PYTHON: "C:\\Python26-x64"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python33-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
init:
- "echo %PYTHON%"
@ -16,9 +24,15 @@ init:
install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install tox
- pip install tox wheel
build: off
test_script:
- tox -e py
- "build.cmd tox -e py"
after_test:
- "build.cmd %PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
- path: dist\*

21
build.cmd Normal file
View File

@ -0,0 +1,21 @@
@echo off
:: To build extensions for 64 bit Python 3, we need to configure environment
:: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of:
:: MS Windows SDK for Windows 7 and .NET Framework 4
::
:: More details at:
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
IF "%DISTUTILS_USE_SDK%"=="1" (
ECHO Configuring environment to build with MSVC on a 64bit architecture
ECHO Using Windows SDK 7.1
"C:\Program Files\Microsoft SDKs\Windows\v7.1\Setup\WindowsSdkVer.exe" -q -version:v7.1
CALL "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release
SET MSSdk=1
REM Need the following to allow tox to see the SDK compiler
SET TOX_TESTENV_PASSENV=DISTUTILS_USE_SDK MSSdk INCLUDE LIB
) ELSE (
ECHO Using default MSVC build environment
)
CALL %*