mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
3154dc87fd
amongst other things, fix #1746
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
version: '{build}'
|
|
build: off # Not a C# project
|
|
|
|
environment:
|
|
CI_DEPS: codecov>=2.0.5
|
|
CI_COMMANDS: codecov
|
|
matrix:
|
|
- PYTHON: "C:\\Python35"
|
|
TOXENV: "py35"
|
|
|
|
SNAPSHOT_HOST:
|
|
secure: NeTo57s2rJhCd/mjKHetXVxCFd3uhr8txnjnAXD1tUI=
|
|
SNAPSHOT_PORT:
|
|
secure: TiJPtg60/edYTH8RnoBErg==
|
|
SNAPSHOT_USER:
|
|
secure: 6yBwmO5gv4vAwoFYII8qjQ==
|
|
SNAPSHOT_PASS:
|
|
secure: LPjrtFrWxYhOVGXzfPRV1GjtZE/wHoKq9m/PI6hSalfysUK5p2DxTG9uHlb4Q9qV
|
|
|
|
install:
|
|
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
|
|
- "python -m pip install --disable-pip-version-check -U pip"
|
|
- "pip install -U tox"
|
|
|
|
test_script:
|
|
- ps: "tox -- --cov mitmproxy --cov pathod -v"
|
|
- ps: |
|
|
$Env:VERSION = $(python mitmproxy/version.py)
|
|
$Env:SKIP_MITMPROXY = "python -c `"print('skip mitmproxy')`""
|
|
tox -e wheel -- https://snapshots.mitmproxy.org/misc/lxml-3.6.0-cp35-cp35m-win32.whl
|
|
tox -e rtool -- bdist
|
|
|
|
deploy_script:
|
|
# we build binaries on every run, but we only upload them for master snapshots or tags.
|
|
ps: |
|
|
if(
|
|
($Env:TOXENV -match "py35") -and
|
|
(($Env:APPVEYOR_REPO_BRANCH -In ("master", "pyinstaller")) -or ($Env:APPVEYOR_REPO_TAG -match "true"))
|
|
) {
|
|
tox -e rtool -- upload-snapshot --bdist --wheel
|
|
}
|
|
|
|
cache:
|
|
- C:\Users\appveyor\AppData\Local\pip\cache
|
|
|
|
notifications:
|
|
- provider: Slack
|
|
incoming_webhook: https://hooks.slack.com/services/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
|