Av1an/appveyor.yml

15 lines
333 B
YAML
Raw Normal View History

2020-02-05 23:24:59 +00:00
version: 1.0.{build}
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-02-05 23:24:59 +00:00
install:
2020-02-06 01:50:16 +00:00
- cmd: >-
"%PYTHON%\python.exe" -m pip install -r requirements
"%PYTHON%\python.exe" -m pip install pyinstaller
2020-02-05 23:24:59 +00:00
build_script:
2020-02-06 01:50:16 +00:00
- cmd: '"%PYTHON%\Scripts\pyinstaller" --onefile av1an.py'
2020-02-05 23:24:59 +00:00
test: off
artifacts:
2020-02-06 01:50:16 +00:00
- path: dist/av1an.exe