1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/appveyor.yml
2018-07-13 23:30:12 +02:00

45 lines
1.1 KiB
YAML

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 cx_freeze"
- "git describe --tags --dirty --always"
test_script:
- "pip install -e ."
after_test:
- "mkdir svtplay-dl"
- "python setversion.py"
- "python %PYTHON%\\Scripts\\cxfreeze --include-modules=queue,idna.idnadata --target-dir=svtplay-dl bin/svtplay-dl"
- "svtplay-dl\\svtplay-dl.exe --version"
- "7z.exe a -tzip svtplay-dl.zip svtplay-dl"
artifacts:
- path: svtplay-dl.zip
name: svtplay-dl
-
branches:
only: master
appveyor_repo_tag: true
deploy:
provider: FTP
protocol: sftp
host: srv.svtplay-dl.se
username: web
password:
secure: wdvTOWRd6TXhtgfSPmYea8XOT/5sc4s3xhELbowqT58=
folder: /var/www/download/$(APPVEYOR_REPO_TAG_NAME)/
artifact: svtplay-dl.zip
build: off