55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
# Declare some variables dependent on the operating system where the runner is installed.
|
|
variables:
|
|
PYTHON3: "C:\\python37\\python.exe"
|
|
PYINSTALLER: "C:\\python37\\scripts\\pyinstaller.exe"
|
|
PYTHON2: "C:\\python27\\python.exe"
|
|
stages:
|
|
- build
|
|
|
|
python3_version:
|
|
type: build
|
|
tags:
|
|
- windows10
|
|
before_script:
|
|
- '%PYTHON3% -m pip install --upgrade pip'
|
|
- '%PYTHON3% -m pip install --upgrade -r requirements.txt'
|
|
script:
|
|
- cd src
|
|
- '%PYINSTALLER% main.spec'
|
|
- cd ..
|
|
- cd scripts
|
|
- '%PYTHON3% prepare_zipversion.py'
|
|
- cd ..
|
|
- move src\music_dl.zip music_dl.zip
|
|
only:
|
|
- master
|
|
artifacts:
|
|
paths:
|
|
- music_dl.zip
|
|
name: music_dl
|
|
expire_in: 1 day
|
|
|
|
python2_version:
|
|
type: build
|
|
tags:
|
|
- windows7
|
|
before_script:
|
|
- '%PYTHON2% -m pip install --upgrade pip'
|
|
- '%PYTHON2% -m pip install --upgrade -r requirements.txt'
|
|
# Additionally, reinstall the right version of pypubsub (3.3.0).
|
|
- '%PYTHON2% -m pip install --upgrade pypubsub==3.3.0'
|
|
script:
|
|
- cd src
|
|
- '%PYTHON2% setup.py py2exe'
|
|
- cd ..
|
|
- cd scripts
|
|
- '%PYTHON2% prepare_zipversion.py'
|
|
- cd ..
|
|
- move src\music_dl.zip music_dl_py2.zip
|
|
only:
|
|
- master
|
|
artifacts:
|
|
paths:
|
|
- music_dl_py2.zip
|
|
name: music_dl_py2
|
|
expire_in: 1 day |