forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.appveyor.yml
64 lines (53 loc) · 1.84 KB
/
.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
environment:
PYPI_PASSWD:
secure: HrwOVde4wZoYHJf9bZ5AsQ==
PYTHONIOENCODING: "utf8:backslashreplace"
PYTHONLEGACYWINDOWSSTDIO: "1"
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
MAKE: C:\MinGW\bin\mingw32-make.exe
cache:
- '%LOCALAPPDATA%\pip\Cache'
init:
- "chcp 65001"
- ps: >-
if($env:APPVEYOR_RDP_DEBUG -eq 'True') {
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
}
install:
# Ensure the Git Submoduldes have been pulled down too
- git submodule update --init --recursive
- >-
tools/build.cmd %PYTHON%\python.exe -m
pip install -U pip wheel setuptools
- '%MAKE% cythonize'
- "tools/build.cmd %PYTHON%\\python.exe -m pip install -r requirements/ci.txt"
build_script:
- "tools/build.cmd %PYTHON%\\python.exe -m setup sdist bdist_wheel"
test_script:
- "tools/build.cmd %PYTHON%\\python.exe -m pytest -c pytest.ci.ini --cov-report xml"
after_test:
- "tools/build.cmd %PYTHON%\\python.exe -m codecov -f coverage.xml -X gcov"
artifacts:
- path: dist\*
deploy_script:
- ps: >-
if($env:appveyor_repo_tag -eq 'True') {
Invoke-Expression "$env:PYTHON\\python.exe -m twine upload dist/* --username aio-libs-bot --password $env:PYPI_PASSWD --skip-existing"
}
on_finish:
- ps: >-
if($env:APPVEYOR_RDP_DEBUG -eq 'True') {
$blockRdp = $true
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
}
#notifications:
# - provider: Webhook
# url: https://ci.appveyor.com/api/github/webhook?id=08c7793w1tp839fl
# on_build_success: false
# on_build_failure: True