socializer/.gitlab-ci.yml

24 lines
496 B
YAML
Raw Normal View History

2018-12-16 14:23:45 +01:00
production:
type: deploy
2018-12-18 10:55:24 +01:00
tags:
- windows
2018-12-16 14:23:45 +01:00
script:
2018-12-18 10:53:38 +01:00
- pip install --upgrade pip
2018-12-17 00:30:50 +01:00
- pip install --upgrade -r requirements.txt
2018-12-19 00:42:56 +01:00
- cd doc
- python documentation_importer.py
- cd ..\src
- python ..\doc\generator.py
2018-12-17 00:30:50 +01:00
- python setup.py py2exe
- cd ..
2018-12-18 10:53:38 +01:00
- cd scripts
- python prepare_zipversion.py
- cd ..
- move src\socializer.zip socializer.zip
only:
- tags
2018-12-17 00:30:50 +01:00
artifacts:
2018-12-17 07:09:39 +01:00
paths:
2018-12-18 10:53:38 +01:00
- socializer.zip
2018-12-17 07:59:23 +01:00
name: socializer
2018-12-17 07:03:36 +01:00
expire_in: 1 week