mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-30 18:36:57 +00:00
70 lines
2.8 KiB
YAML
70 lines
2.8 KiB
YAML
# appveyor.yml
|
|
---
|
|
|
|
environment:
|
|
# Encrypted password (more precisely: token) for upload distro to pypy:
|
|
# The "pypipw" is a custom name.
|
|
# The original (sensitive) token is generated by the pypi: https://pypi.org/manage/account/token/
|
|
# The token has encripted by the appveyor: https://ci.appveyor.com/tools/encrypt
|
|
pypipw:
|
|
secure: N+tYP6JrVCZ12LX7MUmHYJ8kx07F4A1hXtmEW01RmhrrQBdylIf0SO/eEfW5f4ox3S4xG/lgGSzNlZckvgifrsYeeBkWwoSH5/AJ3SnOJ7HBVojVt2t3bAznS6x3aPT7WDpwGN7piwus9aHSmpKaOzRoEOBKfgHv3aUzb907C0d0Yr12LU/4cIoTAn7jMziifSq45Z50lsQwzYic/VkarxTh+GXuCCm1Mb8F686H8i6Smm1Q1n9BsXowYnzwdrTZSBVOUtpd48Mh9JKgSNhfmQ==
|
|
testpypipw:
|
|
secure: CcyBI8e/2LdIT2aYIytTAgR4795DNBDM/ztsz1kqZYYOeNc3zlJWLdYWrnjCHn5W6/ZcAHrsxCdCMHvtr6PIVgBRpl2RR3fk2jKTzKqJJsLW871q30BsE0kws32f1IiqfjVtLn8BUC91IJ2xBBXtOYktf1tCMi3zJMSF9+MIOQKIu298bIRnD1Lc+4lzcSZJOn4I7dOMdzlcCMRqhtO58TGwR/hD+22FHjyWVB8nLL18AO+XXS9lHSOUrH6rD5NYvVFZD68oV/RrCGAjRmfMnw==
|
|
# Set default pytohn, the matrinx is in the tox settings.
|
|
PYTHON: "C:\\Python37"
|
|
|
|
build: on
|
|
|
|
build_script:
|
|
# Create source distribution.
|
|
- cmd: |
|
|
"%PYTHON%/python.exe" -m pip install --upgrade pip
|
|
"%PYTHON%/python.exe" -m pip install --upgrade setuptools wheel
|
|
"%PYTHON%/python.exe" -m setup sdist
|
|
|
|
install:
|
|
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
|
|
- pip install .[test]
|
|
|
|
test_script:
|
|
- tox
|
|
|
|
after_test:
|
|
# Upload code coverage results.
|
|
# https://github.com/codecov/codecov-python/issues/158#issuecomment-514282362
|
|
- for %%f in (*coverage.xml) do (
|
|
(codecov --no-color -X gcov --file %%f --required ) || (sleep 30 && codecov --no-color -X gcov --file %%f --required )
|
|
)
|
|
|
|
# fill .pypirc file.
|
|
# pypi
|
|
- cmd: "echo [pypi] > %USERPROFILE%\\.pypirc"
|
|
- cmd: "echo repository: https://upload.pypi.org/legacy/ >> %USERPROFILE%\\.pypirc"
|
|
- cmd: "echo username: __token__ >> %USERPROFILE%\\.pypirc"
|
|
- cmd: "echo password: %pypipw% >> %USERPROFILE%\\.pypirc"
|
|
# testpypi
|
|
- cmd: "echo [testpypi] >> %USERPROFILE%\\.pypirc"
|
|
- cmd: "echo repository: https://test.pypi.org/legacy/ >> %USERPROFILE%\\.pypirc"
|
|
- cmd: "echo username: __token__ >> %USERPROFILE%\\.pypirc"
|
|
- cmd: "echo password: %testpypipw% >> %USERPROFILE%\\.pypirc"
|
|
|
|
artifacts:
|
|
- path: dist\wexpect*.tar.gz
|
|
name: wexpect-source-distro
|
|
|
|
deploy_script:
|
|
# Upload to pypi.
|
|
# More precisely. The master and release builds will be uploaded to pypi. Test branch will be
|
|
# uploaded to test-pypi the test builds.
|
|
# See more at https://stackoverflow.com/a/39155147/2506522
|
|
|
|
- IF %APPVEYOR_REPO_BRANCH%==master (
|
|
twine upload -r pypi dist\\wexpect*.tar.gz
|
|
)
|
|
- IF %APPVEYOR_REPO_TAG%==true (
|
|
twine upload -r pypi dist\\wexpect*.tar.gz
|
|
)
|
|
- IF %APPVEYOR_REPO_BRANCH%==test (
|
|
twine upload -r testpypi dist\\wexpect*.tar.gz
|
|
)
|