music-dl/.gitlab-ci.yml
2020-07-18 00:52:46 -05:00

59 lines
1.6 KiB
YAML

variables:
# PYTHON3_32: "C:\\python38-32\\python.exe"
# PYTHON3_64: "C:\\python38-64\\python.exe"
NSIS: "C:\\nsis\\makensis.exe"
### Stage list
# Build: This will be the main stage generating stuff in the dist folder. Jobs present in this stage will run py2exe or pyinstaller files accordingly.
# pack: Jobs in this stage will take the dist folder and zip it or generate an exe file.
stages:
- test
- build
- pack
#default:
# image: python:3.8.4-windowsservercore-1
.configure_environment: &configure_environment
tags:
- windows10
before_script:
- 'Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))'
- 'choco install -y --x86 git nsis poshgit'
- 'refreshenv'
- 'python -V'
# - 'python -m venv env'
# - 'env\scripts\activate'
- 'python -m pip install --upgrade pip'
- 'python -m pip install --upgrade -r requirements.txt'
test:
<<: *configure_environment
stage: test
tags:
- windows10
script:
- cd src
- 'python -m coverage run run_tests.py'
- 'python -m coverage report --omit="test*"'
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
only:
- master
public:
<<: *configure_environment
stage: build
script:
- cd src
- 'python setup.py build'
- '&$env:NSIS installer.nsi'
- cd ..
- move src\music_dl* .
- cd scripts
- 'python prepare_zipversion.py'
- cd ..
- move src\music_dl.zip music_dl.zip
- 'python scripts/generate_update_file.py'
- 'python scripts/upload.py'
only:
- master