2018-12-21 01:56:24 +00:00
|
|
|
#Docs: https://www.appveyor.com/docs/appveyor-yml/
|
|
|
|
|
|
|
|
#https://github.com/vasole/fisx/blob/master/appveyor.yml
|
|
|
|
#https://github.com/sdispater/poetry/blob/master/.appveyor.yml
|
|
|
|
#https://github.com/sdispater/pendulum/blob/master/appveyor.yml
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
2018-12-24 00:44:21 +00:00
|
|
|
- master
|
2018-12-21 01:56:24 +00:00
|
|
|
|
|
|
|
image: Visual Studio 2017
|
2018-12-24 00:49:21 +00:00
|
|
|
shallow_clone: true
|
2018-12-21 01:56:24 +00:00
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
# For Python versions available on Appveyor, see
|
|
|
|
# https://www.appveyor.com/docs/windows-images-software/ or
|
|
|
|
# https://www.appveyor.com/docs/linux-images-software/
|
2019-01-15 03:22:35 +00:00
|
|
|
- pydir: 'C:\Python36'
|
|
|
|
- pydir: 'C:\Python37-x64'
|
2018-12-21 01:56:24 +00:00
|
|
|
global:
|
|
|
|
py: '%pydir%\python.exe'
|
|
|
|
APPVEYOR_SAVE_CACHE_ON_ERROR: true
|
|
|
|
|
2019-01-11 07:56:37 +00:00
|
|
|
|
2018-12-21 01:56:24 +00:00
|
|
|
cache:
|
2019-01-11 07:56:37 +00:00
|
|
|
- '%LOCALAPPDATA%\pypoetry\Cache -> .appveyor\clear-caches'
|
|
|
|
- '%USERPROFILE%\.poetry -> .appveyor\clear-caches'
|
|
|
|
# \cache\repositories\pypi\
|
|
|
|
# \virtualenvs\xyz-py3.x\
|
2018-12-21 01:56:24 +00:00
|
|
|
|
|
|
|
install:
|
2018-12-24 03:43:20 +00:00
|
|
|
# needed? to fix `appveyor` command
|
|
|
|
- 'set PATH=C:\Program Files\AppVeyor\BuildAgent\;%PATH%'
|
|
|
|
|
2018-12-21 01:56:24 +00:00
|
|
|
- 'curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | %py%'
|
2018-12-24 03:43:20 +00:00
|
|
|
- 'set PATH=%USERPROFILE%\.poetry\bin;%PATH%'
|
2018-12-21 01:56:24 +00:00
|
|
|
|
|
|
|
# Prevents: "The current Python version (2.7.15) is not supported by the project (^3.6)"
|
|
|
|
- 'set PATH=%pydir%;%pydir%\bin;%pydir%\Scripts;%PATH%'
|
|
|
|
- 'poetry install -v' # don't pass --no-dev
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- exit
|
|
|
|
|
|
|
|
test_script:
|
2019-01-11 07:56:37 +00:00
|
|
|
- 'poetry run pytest --tb=short --cov=corrscope'
|
|
|
|
- 'poetry run codecov'
|
2018-12-21 01:56:24 +00:00
|
|
|
|
|
|
|
after_test:
|
2019-01-15 03:22:35 +00:00
|
|
|
- 'if not "%pydir%"=="C:\Python37-x64" appveyor exit'
|
2018-12-24 01:10:10 +00:00
|
|
|
# Running pyinstaller is much faster on x64 I think,
|
|
|
|
# but the resulting files are 64-bit only.
|
2018-12-21 01:56:24 +00:00
|
|
|
- 'poetry build'
|
2019-01-29 08:24:08 +00:00
|
|
|
- 'poetry run pyinstaller corrscope.spec -y'
|
2018-12-21 01:56:24 +00:00
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: 'dist\*'
|