summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-01 06:44:11 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-01 06:44:11 -0400
commit9a562b71d914d47f93f865339d62151a970fbb8c (patch)
treeb0c75b837fcef32ac951ab9d23b811bc0ea26253 /appveyor.yml
parent87004ac13c1bd4cade88e9e35a316efb89123f3e (diff)
downloadpython-coveragepy-9a562b71d914d47f93f865339d62151a970fbb8c.tar.gz
Build wheels on appveyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 232427b..fb0b8d2 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -27,6 +27,13 @@ environment:
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
+ - JOB: "2.7 64-bit"
+ TOXENV: "py27"
+ WINDOWS_SDK_VERSION: "v7.0"
+ PYTHON_HOME: "C:\\Python27-x64"
+ PYTHON_VERSION: "2.7"
+ PYTHON_ARCH: "64"
+
- JOB: "3.3 32-bit"
TOXENV: "py33"
WINDOWS_SDK_VERSION: "v7.1"
@@ -34,6 +41,13 @@ environment:
PYTHON_VERSION: "3.3"
PYTHON_ARCH: "32"
+ - JOB: "3.3 64-bit"
+ TOXENV: "py33"
+ WINDOWS_SDK_VERSION: "v7.1"
+ PYTHON_HOME: "C:\\Python33-x64"
+ PYTHON_VERSION: "3.3"
+ PYTHON_ARCH: "64"
+
- JOB: "3.4 32-bit"
TOXENV: "py34"
WINDOWS_SDK_VERSION: "v7.1"
@@ -41,6 +55,13 @@ environment:
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
+ - JOB: "3.4 64-bit"
+ TOXENV: "py34"
+ WINDOWS_SDK_VERSION: "v7.1"
+ PYTHON_HOME: "C:\\Python34-x64"
+ PYTHON_VERSION: "3.4"
+ PYTHON_ARCH: "64"
+
# Meta coverage
- JOB: "Meta 2.7"
TOXENV: "py27"
@@ -72,6 +93,7 @@ test_script:
after_test:
- if "%COVERAGE_COVERAGE%" == "yes" 7z a metacov-win-%TOXENV%.zip %APPVEYOR_BUILD_FOLDER%\.metacov*
+ - if NOT "%COVERAGE_COVERAGE%" == "yes" "%WITH_COMPILER% %PYTHON%/python setup.py bdist_wheel"
artifacts:
- path: "dist\\*"