Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- # This config file is used by appveyor.com to build Windows release binaries
-
- version: 0.4.1.dev0-b{build}
-
- branches:
- only:
- - master
-
- skip_tags: true
-
- environment:
- global:
- # See: http://stackoverflow.com/a/13751649/163740
- WRAPPER: "cmd /E:ON /V:ON /C .\\scripts\\win_wrapper.cmd"
- PIP: "%WRAPPER% %PYTHON%\\Scripts\\pip.exe"
- SETUPPY: "%WRAPPER% %PYTHON%\\python setup.py --with-extension"
-
- matrix:
- - PYTHON: "C:\\Python27"
- PYTHON_VERSION: "2.7"
- PYTHON_ARCH: "32"
-
- - PYTHON: "C:\\Python27-x64"
- PYTHON_VERSION: "2.7"
- PYTHON_ARCH: "64"
-
- - PYTHON: "C:\\Python33"
- PYTHON_VERSION: "3.3"
- PYTHON_ARCH: "32"
-
- - PYTHON: "C:\\Python33-x64"
- PYTHON_VERSION: "3.3"
- PYTHON_ARCH: "64"
-
- - PYTHON: "C:\\Python34"
- PYTHON_VERSION: "3.4"
- PYTHON_ARCH: "32"
-
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4"
- PYTHON_ARCH: "64"
-
- install:
- - "%PIP% install wheel"
-
- build_script:
- - "%SETUPPY% build"
-
- test_script:
- - "%SETUPPY% -q test"
-
- after_test:
- - "%SETUPPY% bdist_wheel"
-
- artifacts:
- - path: dist\*
-
- deploy: off
|