From b90eb1fc8f91b72d91fa35ba7db3ba4e60c9c19d Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 26 Nov 2019 09:30:56 -0600 Subject: [PATCH] Attempt to create 64 bits alpha --- .gitlab-ci.yml | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42458a8..ddd2675 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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