Av1an/appveyor.yml

25 lines
562 B
YAML
Raw Normal View History

2020-02-06 01:50:16 +00:00
image: Visual Studio 2019
2020-02-05 23:24:59 +00:00
environment:
2020-02-06 01:50:16 +00:00
PYTHON: C:\Python38-x64
2020-05-19 23:17:48 +00:00
2020-02-05 23:24:59 +00:00
install:
- cmd: '"%PYTHON%\python.exe" -m pip install numpy opencv-python pypiwin32 '
- cmd: '"%PYTHON%\python.exe" -m pip install pyinstaller scipy matplotlib'
2020-05-19 23:17:48 +00:00
2020-02-05 23:24:59 +00:00
build_script:
2020-02-14 08:42:29 +00:00
- cmd: '"%PYTHON%\Scripts\pyinstaller" --onefile av1an.py'
2020-05-19 23:17:48 +00:00
2020-02-05 23:24:59 +00:00
test: off
2020-05-19 23:17:48 +00:00
2020-02-05 23:24:59 +00:00
artifacts:
2020-02-06 01:50:16 +00:00
- path: dist/av1an.exe
2020-05-19 23:17:48 +00:00
deploy:
- provider: GitHub
artifact: dist/av1an.exe
auth_token:
2020-06-03 16:05:38 +00:00
secure: 'Z3AF4OhJWJhLBAa22hYvCh68N6QpgbSSGdWvmzmIWiYHZ4vidt3HhfFxln2yy1IB'
2020-05-19 23:17:48 +00:00
prerelease: true
on:
appveyor_repo_tag: true