forked from pyimgui/pyimgui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.appveyor.yml
50 lines (40 loc) · 985 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
image:
- Ubuntu
- Visual Studio 2015
- macos-catalina
environment:
matrix:
- CIBW_BUILD: "cp311-*"
- CIBW_BUILD: "cp310-*"
- CIBW_BUILD: "cp39-*"
- CIBW_BUILD: "cp38-*"
- CIBW_BUILD: "cp37-*"
- CIBW_BUILD: "cp36-*"
- CIBW_BUILD: "pp39-*"
- CIBW_BUILD: "pp38-*"
- CIBW_BUILD: "pp37-*"
stack: python 3.7
init:
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
install: |
python --version
git submodule update --init --recursive
python -m pip install cibuildwheel==2.12.1
build_script: python -m cibuildwheel --output-dir dist
on_success:
- ps: |
if ($env:APPVEYOR_REPO_BRANCH -eq "master")
{
python -m pip install dropbox
python ci/dropbox_upload.py $(python setup.py --version)
}
else
{
Write-Host "Not a master branch. Upload skipped."
}
artifacts:
- path: "dist\\*.whl"
name: Wheels
# TODO: tmp - set this back to true
matrix:
fast_finish: false