socializer/.gitlab-ci.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

# Jobs to build the two channels in Socializer.
alpha:
type: deploy
tags:
- windows
script:
- pip install --upgrade pip
- pip install --upgrade -r requirements.txt
- copy changelog.md doc\changelog.md
- cd doc
- python documentation_importer.py
- cd ..\src
- python ..\doc\generator.py
- python write_version_data.py
- python setup.py py2exe
- cd ..
- cd scripts
- python prepare_zipversion.py
- cd ..
- move src\socializer.zip socializer.zip
only:
- master
artifacts:
paths:
- socializer.zip
name: socializer
expire_in: 1 week
stable:
2018-12-16 07:23:45 -06:00
type: deploy
2018-12-18 03:55:24 -06:00
tags:
- windows
2018-12-16 07:23:45 -06:00
script:
2018-12-18 03:53:38 -06:00
- pip install --upgrade pip
2018-12-16 17:30:50 -06:00
- pip install --upgrade -r requirements.txt
- copy changelog.md doc\changelog.md
2018-12-18 17:42:56 -06:00
- cd doc
- python documentation_importer.py
- cd ..\src
- python ..\doc\generator.py
2018-12-16 17:30:50 -06:00
- python setup.py py2exe
- cd ..
2018-12-18 03:53:38 -06:00
- cd scripts
- python prepare_zipversion.py
- cd ..
- move src\socializer.zip socializer.zip
only:
2018-12-19 17:31:10 -06:00
- tags
2018-12-16 17:30:50 -06:00
artifacts:
2018-12-17 00:09:39 -06:00
paths:
2018-12-18 03:53:38 -06:00
- socializer.zip
2019-01-01 05:36:29 -06:00
name: socializer