socializer/.gitlab-ci.yml

190 lines
5.5 KiB
YAML
Raw Normal View History

# Jobs to build the two channels in Socializer.
2019-11-26 09:26:27 -06:00
# Currently using python 3.7.5
2019-01-01 20:56:12 -06:00
variables:
2019-11-25 13:52:51 -06:00
PYTHON3-32: "C:\\python37-32\\python.exe"
PYTHON3-64: "C:\\python37-32\\python.exe"
2019-11-25 14:04:44 -06:00
PYINSTALLER: "C:\\python37-32\\scripts\\pyinstaller.exe"
2019-01-17 16:22:49 -06:00
NSIS: "C:\\nsis\\makensis.exe"
2019-01-01 20:56:12 -06:00
2019-11-26 09:26:27 -06:00
### Job to make some tests (ToDo: I need to improve the current testing stuff. Currently those tests fails)
test_py3:
stage: test
tags:
- windows10
before_script:
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% -V'
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% -m pip install --upgrade pip'
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
2019-01-07 15:26:06 -06:00
only:
- schedules
script:
- cd src
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% -m coverage run run_tests.py'
- '%PYTHON3-32% -m coverage report --omit="test*"'
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
2019-11-26 09:26:27 -06:00
# Create documentation in all available languages so we'll have it at http://socializer.su/documentation
# this job is triggered on every commit to master, so we always will display the latest available version of the documentation in the website.
2019-05-07 10:29:15 -05:00
documentation:
type: deploy
tags:
- windows10
before_script:
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% -V'
2019-05-07 10:29:15 -05:00
script:
- copy changelog.md doc\changelog.md
- cd doc
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% documentation_importer.py'
2019-05-07 10:29:15 -05:00
- cd ..\src
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% ..\doc\generator.py'
2019-05-07 10:37:31 -05:00
- 'move documentation ..\'
2019-05-07 10:29:15 -05:00
only:
- master
artifacts:
paths:
- documentation
name: socializer_documentation
2019-11-26 09:26:27 -06:00
expire_in: 90 days
2019-05-07 10:29:15 -05:00
2019-11-26 09:26:27 -06:00
# Create alpha version in Python 3.7 by using pyinstaller
# This job is about to be removed on november 27.
alpha_python3:
2019-01-01 20:56:12 -06:00
type: deploy
tags:
- windows10
before_script:
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% -V'
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% -m pip install --upgrade pip'
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
- '%PYTHON3-32% -m pip uninstall enum34 -y'
2019-01-01 20:56:12 -06:00
script:
- copy changelog.md doc\changelog.md
- cd doc
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% documentation_importer.py'
2019-01-01 20:56:12 -06:00
- cd ..\src
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% ..\doc\generator.py'
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% write_version_data.py'
2019-01-01 20:56:12 -06:00
- '%PYINSTALLER% main.spec'
- cd ..
- cd scripts
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% prepare_zipversion.py'
2019-03-06 16:52:58 -06:00
- call genpot_interface.bat
- call genpot_doc.bat
2019-01-01 20:56:12 -06:00
- cd ..
- move src\socializer.zip socializer.zip
- move scripts\socializer.pot socializer.pot
- move scripts\socializer-documentation.pot socializer-documentation.pot
2019-01-01 20:56:12 -06:00
only:
- schedules
2019-01-01 20:56:12 -06:00
artifacts:
paths:
2019-01-01 21:25:17 -06:00
- socializer.zip
- socializer.pot
- socializer-documentation.pot
2019-01-01 21:25:17 -06:00
name: socializer_py3
expire_in: 1 day
2019-01-01 20:56:12 -06:00
2019-11-26 09:26:27 -06:00
# Creates a version built with Python 3.7 and cx-freeze
# this is going to be the current alpha version after november 27.
2019-11-26 09:30:56 -06:00
alpha32:
2019-11-19 17:41:29 -06:00
type: deploy
tags:
- windows10
before_script:
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% -V'
2019-11-25 12:03:26 -06:00
- '%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'
2019-11-19 17:41:29 -06:00
script:
- copy changelog.md doc\changelog.md
- cd doc
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% documentation_importer.py'
2019-11-19 17:41:29 -06:00
- cd ..\src
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% ..\doc\generator.py'
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% write_version_data.py'
- '%PYTHON3-32% setup.py build'
2019-11-19 17:41:29 -06:00
- cd ..
- cd scripts
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% prepare_zipversion_cxfreeze.py'
2019-11-19 17:41:29 -06:00
- 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
2019-11-26 09:30:56 -06:00
# Creates a version built with Python 3.7 and cx-freeze
# this is going to be the current alpha version after november 27.
alpha64:
type: deploy
tags:
- windows10
before_script:
- '%PYTHON3-64% -V'
- '%PYTHON3-64% -m pip install --upgrade pip cx_freeze'
- '%PYTHON3-64% -m pip install --upgrade -r requirements.txt'
- '%PYTHON3-64% -m pip uninstall enum34 -y'
script:
- copy changelog.md doc\changelog.md
- cd doc
- '%PYTHON3-64% documentation_importer.py'
- cd ..\src
- '%PYTHON3-64% ..\doc\generator.py'
- '%PYTHON3-64% write_version_data.py'
- '%PYTHON3-64% setup.py build'
- cd ..
- cd scripts
- '%PYTHON3-64% prepare_zipversion_cxfreeze.py'
- call genpot_interface.bat
- call genpot_doc.bat
- cd ..
- move src\socializer.zip socializer_x64.zip
- move scripts\socializer.pot socializer.pot
- move scripts\socializer-documentation.pot socializer-documentation.pot
only:
- schedules
artifacts:
paths:
- socializer_x64.zip
- socializer.pot
- socializer-documentation.pot
name: socializer_alpha
expire_in: 1 day
2019-11-26 09:26:27 -06:00
# Generates a new stable version of the application every tag.
stable:
2018-12-16 07:23:45 -06:00
type: deploy
2018-12-18 03:55:24 -06:00
tags:
- windows
2019-01-17 16:34:44 -06:00
before_script:
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% -V'
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% -m pip install --upgrade pip'
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
- '%PYTHON3-32% -m pip uninstall enum34 -y'
2018-12-16 07:23:45 -06:00
script:
- copy changelog.md doc\changelog.md
2018-12-18 17:42:56 -06:00
- cd doc
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% documentation_importer.py'
2018-12-18 17:42:56 -06:00
- cd ..\src
2019-11-26 09:26:27 -06:00
- '%PYTHON3-32% ..\doc\generator.py'
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% write_version_data.py'
- '%PYTHON3-32% setup.py build'
2019-01-17 16:34:44 -06:00
- '%NSIS% installer.nsi'
2018-12-16 17:30:50 -06:00
- cd ..
2019-01-17 16:34:44 -06:00
- move src\socializer* .
2018-12-18 03:53:38 -06:00
- cd scripts
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% prepare_zipversion_cxfreeze.py'
2018-12-18 03:53:38 -06:00
- cd ..
- move src\socializer.zip socializer.zip
2019-11-25 12:03:26 -06:00
- '%PYTHON3-32% scripts/upload.py'
only:
2019-11-25 10:59:03 -06:00
- tags