forked from glichtner/pyeditorialmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
31 lines (28 loc) · 823 Bytes
/
appveyor.yml
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
version: '{branch}-{build}'
environment:
matrix:
- PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python35-x64"
- PYTHON: "C:/Python36-x64"
- PYTHON: "C:/Python37-x64"
- PYTHON: "C:/Python38-x64"
- PYTHON: "C:/Python39-x64"
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python35"
- PYTHON: "C:/Python36"
- PYTHON: "C:/Python37"
- PYTHON: "C:/Python38"
- PYTHON: "C:/Python39"
build_script:
- cmd: |
"%PYTHON%/python.exe" -m pip install --upgrade pip
"%PYTHON%/python.exe" -m pip install --upgrade setuptools wheel numpy
"%PYTHON%/python.exe" setup.py build
copy ..\bin\*.* ..\wheel\dbr\
cd build\lib.win-*\
copy *.* ..\..\..\wheel\dbr\
cd ..\..\..\wheel\
"%PYTHON%/python.exe" setup.py bdist_wheel
artifacts:
- path: wheel\dist\*.whl
name: wheels