socializer/.gitlab-ci.yml

143 lines
3.7 KiB
YAML
Raw Normal View History

# Jobs to build the two channels in Socializer.
2019-01-02 03:56:12 +01:00
variables:
2019-11-25 19:03:26 +01:00
PYTHON3-32: "C:\\python38-32\\python.exe"
PYTHON3-64: "C:\\python38-32\\python.exe"
2019-01-02 03:56:12 +01:00
PYTHON2: "C:\\python27\\python.exe"
2019-01-17 23:22:49 +01:00
NSIS: "C:\\nsis\\makensis.exe"
2019-01-02 03:56:12 +01:00
test_py3:
stage: test
tags:
- windows10
before_script:
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% -v'
- '%PYTHON3-32% -m pip install --upgrade pip'
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
2019-01-07 22:26:06 +01:00
only:
- schedules
script:
- cd src
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% -m coverage run run_tests.py'
- '%PYTHON3-32% -m coverage report --omit="test*"'
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
2019-05-07 17:29:15 +02:00
documentation:
type: deploy
tags:
- windows10
before_script:
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% -v'
2019-05-07 17:29:15 +02:00
script:
- copy changelog.md doc\changelog.md
- cd doc
- '%PYTHON2% documentation_importer.py'
- cd ..\src
- '%PYTHON2% ..\doc\generator.py'
2019-05-07 17:37:31 +02:00
- 'move documentation ..\'
2019-05-07 17:29:15 +02:00
only:
- master
artifacts:
paths:
- documentation
name: socializer_documentation
expire_in: 1 day
alpha_python3:
2019-01-02 03:56:12 +01:00
type: deploy
tags:
- windows10
before_script:
2019-11-25 19:03:26 +01:00
- '%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'
2019-01-02 03:56:12 +01:00
script:
- copy changelog.md doc\changelog.md
- cd doc
- '%PYTHON2% documentation_importer.py'
- cd ..\src
- '%PYTHON2% ..\doc\generator.py'
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% write_version_data.py'
2019-01-02 03:56:12 +01:00
- '%PYINSTALLER% main.spec'
- cd ..
- cd scripts
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% prepare_zipversion.py'
2019-03-06 23:52:58 +01:00
- call genpot_interface.bat
- call genpot_doc.bat
2019-01-02 03:56:12 +01:00
- cd ..
- move src\socializer.zip socializer.zip
- move scripts\socializer.pot socializer.pot
- move scripts\socializer-documentation.pot socializer-documentation.pot
2019-01-02 03:56:12 +01:00
only:
- schedules
2019-01-02 03:56:12 +01:00
artifacts:
paths:
2019-01-02 04:25:17 +01:00
- socializer.zip
- socializer.pot
- socializer-documentation.pot
2019-01-02 04:25:17 +01:00
name: socializer_py3
expire_in: 1 day
2019-01-02 03:56:12 +01:00
2019-11-20 00:41:29 +01:00
alpha:
type: deploy
tags:
- windows10
before_script:
2019-11-25 19:03:26 +01:00
- '%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'
2019-11-20 00:41:29 +01:00
script:
- copy changelog.md doc\changelog.md
- cd doc
- '%PYTHON2% documentation_importer.py'
- cd ..\src
- '%PYTHON2% ..\doc\generator.py'
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% write_version_data.py'
- '%PYTHON3-32% setup.py build'
2019-11-20 00:41:29 +01:00
- cd ..
- cd scripts
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% prepare_zipversion_cxfreeze.py'
2019-11-20 00:41:29 +01: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
stable:
2018-12-16 14:23:45 +01:00
type: deploy
2018-12-18 10:55:24 +01:00
tags:
- windows
2019-01-17 23:34:44 +01:00
before_script:
2019-11-25 19:03:26 +01:00
- '%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'
2018-12-16 14:23:45 +01:00
script:
- copy changelog.md doc\changelog.md
2018-12-19 00:42:56 +01:00
- cd doc
2019-01-17 23:34:44 +01:00
- '%PYTHON2% documentation_importer.py'
2018-12-19 00:42:56 +01:00
- cd ..\src
2019-01-17 23:34:44 +01:00
- '%PYTHON2% ..\doc\generator.py'
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% write_version_data.py'
- '%PYTHON3-32% setup.py build'
2019-01-17 23:34:44 +01:00
- '%NSIS% installer.nsi'
2018-12-17 00:30:50 +01:00
- cd ..
2019-01-17 23:34:44 +01:00
- move src\socializer* .
2018-12-18 10:53:38 +01:00
- cd scripts
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% prepare_zipversion_cxfreeze.py'
2018-12-18 10:53:38 +01:00
- cd ..
- move src\socializer.zip socializer.zip
2019-11-25 19:03:26 +01:00
- '%PYTHON3-32% scripts/upload.py'
only:
2019-11-25 17:59:03 +01:00
- tags