diff options
author | Ali Ebrahim <aebrahim@ucsd.edu> | 2015-11-22 00:52:25 -0800 |
---|---|---|
committer | Ali Ebrahim <aebrahim@ucsd.edu> | 2015-11-22 00:52:25 -0800 |
commit | e394003ba5660dd4c068b99a1b43456166159f94 (patch) | |
tree | 2686115534575406dda3d904e090950a0e9a8a56 /appveyor.yml | |
parent | 2510da1961f95ea7d642d1b61bcd270b90962f54 (diff) | |
download | simplejson-e394003ba5660dd4c068b99a1b43456166159f94.tar.gz |
build windows wheels on appveyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..1b40ad1 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,59 @@ +environment: + + global: + # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the + # /E:ON and /V:ON options are not enabled in the batch script intepreter + # See: http://stackoverflow.com/a/13751649/163740 + WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd" + + matrix: + - PYTHON: "C:\\Python27" + PYTHON_VERSION: "2.7.10" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python33" + PYTHON_VERSION: "3.3.6" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python34" + PYTHON_VERSION: "3.4.3" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python35" + PYTHON_VERSION: "3.5.0" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python27-x64" + PYTHON_VERSION: "2.7.10" + PYTHON_ARCH: "64" + + - PYTHON: "C:\\Python33-x64" + PYTHON_VERSION: "3.3.6" + PYTHON_ARCH: "64" + + - PYTHON: "C:\\Python34-x64" + PYTHON_VERSION: "3.4.3" + PYTHON_ARCH: "64" + + - PYTHON: "C:\\Python35-x64" + PYTHON_VERSION: "3.5.0" + PYTHON_ARCH: "64" + +clone_depth: 25 + +init: + - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%" + +install: + - "powershell appveyor\\install.ps1" + +build: off + +test_script: + - "%WITH_COMPILER% %PYTHON%/python setup.py bdist_wheel bdist_wininst" + +artifacts: + - path: dist\* + +#on_success: +# - TODO: upload the content of dist/*.whl to a public wheelhouse |