Attempt to create 64 bits alpha

This commit is contained in:
Manuel Cortez 2019-11-26 09:30:56 -06:00
parent f9a1183993
commit b90eb1fc8f

View File

@ -86,7 +86,7 @@ alpha_python3:
# Creates a version built with Python 3.7 and cx-freeze
# this is going to be the current alpha version after november 27.
alpha:
alpha32:
type: deploy
tags:
- windows10
@ -122,6 +122,44 @@ alpha:
name: socializer_alpha
expire_in: 1 day
# 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
# Generates a new stable version of the application every tag.
stable:
type: deploy