Av1an/appveyor.yml
redzic 8cee2d3328
Fix chunking/resume, port chunk generation to Rust, remove unused Python code, update indicatif (#297)
* Use upstream indicatif instead of fork
* Port encode_file and all chunk generation to Rust, remove unused Python dependencies
2021-07-15 05:14:33 +03:00

25 lines
562 B
YAML

image: Visual Studio 2019
environment:
PYTHON: C:\Python38-x64
install:
- cmd: '"%PYTHON%\python.exe" -m pip install numpy opencv-python pypiwin32 '
- cmd: '"%PYTHON%\python.exe" -m pip install pyinstaller scipy matplotlib'
build_script:
- cmd: '"%PYTHON%\Scripts\pyinstaller" --onefile av1an.py'
test: off
artifacts:
- path: dist/av1an.exe
deploy:
- provider: GitHub
artifact: dist/av1an.exe
auth_token:
secure: 'Z3AF4OhJWJhLBAa22hYvCh68N6QpgbSSGdWvmzmIWiYHZ4vidt3HhfFxln2yy1IB'
prerelease: true
on:
appveyor_repo_tag: true