144 lines
3.7 KiB
YAML
144 lines
3.7 KiB
YAML
# Jobs to build the two channels in Socializer.
|
|
variables:
|
|
PYTHON3-32: "C:\\python37-32\\python.exe"
|
|
PYTHON3-64: "C:\\python37-32\\python.exe"
|
|
PYINSTALLER: "C:\\python37-32\\scripts\\pyinstaller.exe"
|
|
PYTHON2: "C:\\python27\\python.exe"
|
|
NSIS: "C:\\nsis\\makensis.exe"
|
|
|
|
test_py3:
|
|
stage: test
|
|
tags:
|
|
- windows10
|
|
before_script:
|
|
- '%PYTHON3-32% -v'
|
|
- '%PYTHON3-32% -m pip install --upgrade pip'
|
|
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
|
|
only:
|
|
- schedules
|
|
script:
|
|
- cd src
|
|
- '%PYTHON3-32% -m coverage run run_tests.py'
|
|
- '%PYTHON3-32% -m coverage report --omit="test*"'
|
|
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
|
|
|
|
documentation:
|
|
type: deploy
|
|
tags:
|
|
- windows10
|
|
before_script:
|
|
- '%PYTHON3-32% -v'
|
|
script:
|
|
- copy changelog.md doc\changelog.md
|
|
- cd doc
|
|
- '%PYTHON2% documentation_importer.py'
|
|
- cd ..\src
|
|
- '%PYTHON2% ..\doc\generator.py'
|
|
- 'move documentation ..\'
|
|
only:
|
|
- master
|
|
artifacts:
|
|
paths:
|
|
- documentation
|
|
name: socializer_documentation
|
|
expire_in: 1 day
|
|
|
|
alpha_python3:
|
|
type: deploy
|
|
tags:
|
|
- windows10
|
|
before_script:
|
|
- '%PYTHON3-32% -v'
|
|
- '%PYTHON3-32% -m pip install --upgrade pip'
|
|
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
|
|
- '%PYTHON3-32% -m pip uninstall enum34 -y'
|
|
script:
|
|
- copy changelog.md doc\changelog.md
|
|
- cd doc
|
|
- '%PYTHON2% documentation_importer.py'
|
|
- cd ..\src
|
|
- '%PYTHON2% ..\doc\generator.py'
|
|
- '%PYTHON3-32% write_version_data.py'
|
|
- '%PYINSTALLER% main.spec'
|
|
- cd ..
|
|
- cd scripts
|
|
- '%PYTHON3-32% prepare_zipversion.py'
|
|
- call genpot_interface.bat
|
|
- call genpot_doc.bat
|
|
- cd ..
|
|
- move src\socializer.zip socializer.zip
|
|
- move scripts\socializer.pot socializer.pot
|
|
- move scripts\socializer-documentation.pot socializer-documentation.pot
|
|
only:
|
|
- schedules
|
|
artifacts:
|
|
paths:
|
|
- socializer.zip
|
|
- socializer.pot
|
|
- socializer-documentation.pot
|
|
name: socializer_py3
|
|
expire_in: 1 day
|
|
|
|
alpha:
|
|
type: deploy
|
|
tags:
|
|
- windows10
|
|
before_script:
|
|
- '%PYTHON3-32% -v'
|
|
- '%PYTHON3-32% -m pip install --upgrade pip cx_freeze'
|
|
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
|
|
- '%PYTHON3-32% -m pip uninstall enum34 -y'
|
|
script:
|
|
- copy changelog.md doc\changelog.md
|
|
- cd doc
|
|
- '%PYTHON2% documentation_importer.py'
|
|
- cd ..\src
|
|
- '%PYTHON2% ..\doc\generator.py'
|
|
- '%PYTHON3-32% write_version_data.py'
|
|
- '%PYTHON3-32% setup.py build'
|
|
- cd ..
|
|
- cd scripts
|
|
- '%PYTHON3-32% prepare_zipversion_cxfreeze.py'
|
|
- call genpot_interface.bat
|
|
- call genpot_doc.bat
|
|
- cd ..
|
|
- move src\socializer.zip socializer.zip
|
|
- move scripts\socializer.pot socializer.pot
|
|
- move scripts\socializer-documentation.pot socializer-documentation.pot
|
|
only:
|
|
- schedules
|
|
artifacts:
|
|
paths:
|
|
- socializer.zip
|
|
- socializer.pot
|
|
- socializer-documentation.pot
|
|
name: socializer_alpha
|
|
expire_in: 1 day
|
|
|
|
stable:
|
|
type: deploy
|
|
tags:
|
|
- windows
|
|
before_script:
|
|
- '%PYTHON3-32% -v'
|
|
- '%PYTHON3-32% -m pip install --upgrade pip'
|
|
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
|
|
- '%PYTHON3-32% -m pip uninstall enum34 -y'
|
|
script:
|
|
- copy changelog.md doc\changelog.md
|
|
- cd doc
|
|
- '%PYTHON2% documentation_importer.py'
|
|
- cd ..\src
|
|
- '%PYTHON2% ..\doc\generator.py'
|
|
- '%PYTHON3-32% write_version_data.py'
|
|
- '%PYTHON3-32% setup.py build'
|
|
- '%NSIS% installer.nsi'
|
|
- cd ..
|
|
- move src\socializer* .
|
|
- cd scripts
|
|
- '%PYTHON3-32% prepare_zipversion_cxfreeze.py'
|
|
- cd ..
|
|
- move src\socializer.zip socializer.zip
|
|
- '%PYTHON3-32% scripts/upload.py'
|
|
only:
|
|
- tags |