1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/appveyor.yml

31 lines
693 B
YAML
Raw Normal View History

2018-01-27 19:11:30 +01:00
environment:
PYTHON: "C:\\Python35"
PYTHON_VERSION: 3.5
PYTHON_ARCH: "32"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python -m pip install -U pip setuptools"
- "pip install -r requirements-dev.txt -r requirements.txt"
- "pip install nuitka"
2018-01-27 19:11:30 +01:00
test_script:
- "pip install -e ."
after_test:
- "mkdir svtplay-dl"
- "nuitka --recurse-all --output svtplay-dl bin/svtplay-dl"
2018-05-08 23:34:54 +02:00
- "dir svtplay-dl"
- "svtplay-dl\\svtplay-dl.exe --version"
- "rmdir /q /s svtplay-dl\\svtplay-dl.build"
- "7z.exe a -tzip svtplay-dl.zip svtplay-dl"
artifacts:
- path: svtplay-dl.zip
name: svtplay-dl
2018-01-27 19:11:30 +01:00
build: off