summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 66c2683d24efa2e94ba9ea49aee17e05abe13276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
environment:
  global:
    TWINE_USERNAME: zope.wheelbuilder
    TWINE_PASSWORD:
      secure: UcdTh6W78cRLVGfKRFoa5A==

  matrix:
    - python: 27
    - python: 27-x64
    - python: 34
    - python: 34-x64
    - python: 35
    - python: 35-x64
    - python: 36
    - python: 36-x64
    - { python: 27, PURE_PYTHON: 1 }
    - { python: 35, PURE_PYTHON: 1 }

install:
  - "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
  - echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
# We need to install the C extensions that BTrees setup-requires
# separately because we've seen problems with the BTrees build cleanup step trying
# to delete a .pyd that was still open.
  - python -m pip install -U pip
  - pip install -U setuptools
  - pip install -U persistent
  - pip install -U BTrees
  - pip install -U zope.testrunner
  - pip install -U .[test]

build_script:
  - pip install wheel
  - python -W ignore setup.py -q bdist_wheel

test_script:
  - python -m zope.testrunner --test-path=src

on_success:
  - echo Build succesful!

artifacts:
  - path: 'dist\*.whl'
    name: wheel

deploy_script:
  - ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE -and $env:PURE_PYTHON -ne 1) { pip install twine; twine upload dist/* }

deploy: on