mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 03:05:35 +00:00

+ fix favorites endpoint returning items less than limit + add endpoint to remove get silence padding + add 'the ulitimate' and 'compilation' to compilation album filters + misc
31 lines
915 B
YAML
31 lines
915 B
YAML
build: false
|
|
environment:
|
|
matrix:
|
|
- PYTHON: "C:/Python27"
|
|
FFMPEG: "4.2.3"
|
|
- PYTHON: "C:/Python34"
|
|
FFMPEG: "4.2.3"
|
|
- PYTHON: "C:/Python35"
|
|
FFMPEG: "4.2.3"
|
|
- PYTHON: "C:/Python36"
|
|
FFMPEG: "4.2.3"
|
|
- PYTHON: "C:/Python36"
|
|
FFMPEG: "latest"
|
|
matrix:
|
|
allow_failures:
|
|
- FFMPEG: "latest"
|
|
init:
|
|
- "ECHO %PYTHON%"
|
|
- ps: "ls C:/Python*"
|
|
install:
|
|
- "%PYTHON%/python.exe -m pip install wheel"
|
|
- "%PYTHON%/python.exe -m pip install -e ."
|
|
# Install ffmpeg
|
|
- ps: Start-FileDownload ('https://github.com/advancedfx/ffmpeg.zeranoe.com-builds-mirror/releases/download/20200915/ffmpeg-' + $env:FFMPEG + '-win64-shared.zip') ffmpeg-shared.zip
|
|
- 7z x ffmpeg-shared.zip > NULL
|
|
- "SET PATH=%cd%\\ffmpeg-%FFMPEG%-win64-shared\\bin;%PATH%"
|
|
# check ffmpeg installation (also shows version)
|
|
- "ffmpeg.exe -version"
|
|
test_script:
|
|
- "%PYTHON%/python.exe test/test.py"
|