summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: 234f392aa7bcd5d98b16dfad5de7b338ac1ff966 (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
version: 1.0.{build}

environment:
  matrix:
  - python: 37
  - python: 37-x64
  - python: 27
  - python: 27-x64
  - python: 36
  - python: 36-x64
  - python: 35
  - python: 35-x64

install:
    - SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
    - python -m pip.__main__ install -U pip wheel setuptools
    - pip install -r requirements.txt

build: off
build_script:
  - python -u setup.py clean
  - python -u setup.py build_ext --inplace --static-deps
  - python -u test.py -vv -p
  - python -u setup.py bdist_wheel --static-deps

test: off
test_script:
  - ps: Get-ChildItem dist\*.whl | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }