Skip to content

Commit

Permalink
Build wheels on appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Sep 1, 2015
1 parent ba20167 commit e10798c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,41 @@ 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"
PYTHON_HOME: "C:\\Python33"
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"
PYTHON_HOME: "C:\\Python34"
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"
Expand Down Expand Up @@ -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\\*"
Expand Down

0 comments on commit e10798c

Please sign in to comment.