Modified gitlab template
This commit is contained in:
parent
e51601a8bd
commit
28e03cbf8e
@ -6,15 +6,19 @@ variables:
|
|||||||
PYINSTALLER: "C:\\python37-32\\scripts\\pyinstaller.exe"
|
PYINSTALLER: "C:\\python37-32\\scripts\\pyinstaller.exe"
|
||||||
NSIS: "C:\\nsis\\makensis.exe"
|
NSIS: "C:\\nsis\\makensis.exe"
|
||||||
|
|
||||||
### Job to make some tests (ToDo: I need to improve the current testing stuff. Currently those tests fails)
|
.configure_environment: &configure_environment
|
||||||
test_py3:
|
|
||||||
stage: test
|
|
||||||
tags:
|
tags:
|
||||||
- windows10
|
- windows10
|
||||||
before_script:
|
before_script:
|
||||||
- '%PYTHON3-32% -V'
|
- '%PYTHON3-32% -V'
|
||||||
- '%PYTHON3-32% -m pip install --upgrade pip'
|
- '%PYTHON3-32% -m pip install --upgrade pip'
|
||||||
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
|
- '%PYTHON3-32% -m pip install --upgrade -r requirements.txt'
|
||||||
|
- '%PYTHON3-32% -m pip uninstall enum34 -y'
|
||||||
|
|
||||||
|
### Job to make some tests (ToDo: I need to improve the current testing stuff. Currently those tests fails)
|
||||||
|
test_py3:
|
||||||
|
<<: *configure_environment
|
||||||
|
stage: test
|
||||||
only:
|
only:
|
||||||
- schedules
|
- schedules
|
||||||
script:
|
script:
|
||||||
@ -26,11 +30,8 @@ test_py3:
|
|||||||
# Create documentation in all available languages so we'll have it at http://socializer.su/documentation
|
# Create documentation in all available languages so we'll have it at http://socializer.su/documentation
|
||||||
# this job is triggered on every commit to master, so we always will display the latest available version of the documentation in the website.
|
# this job is triggered on every commit to master, so we always will display the latest available version of the documentation in the website.
|
||||||
documentation:
|
documentation:
|
||||||
|
<<: *configure_environment
|
||||||
type: deploy
|
type: deploy
|
||||||
tags:
|
|
||||||
- windows10
|
|
||||||
before_script:
|
|
||||||
- '%PYTHON3-32% -V'
|
|
||||||
script:
|
script:
|
||||||
- copy changelog.md doc\changelog.md
|
- copy changelog.md doc\changelog.md
|
||||||
- cd doc
|
- cd doc
|
||||||
@ -49,14 +50,8 @@ documentation:
|
|||||||
# Creates a version built with Python 3.7 and cx-freeze
|
# Creates a version built with Python 3.7 and cx-freeze
|
||||||
# this is going to be the current alpha version after november 27.
|
# this is going to be the current alpha version after november 27.
|
||||||
alpha32:
|
alpha32:
|
||||||
|
<<: *configure_environment
|
||||||
type: deploy
|
type: deploy
|
||||||
tags:
|
|
||||||
- windows10
|
|
||||||
before_script:
|
|
||||||
- '%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'
|
|
||||||
script:
|
script:
|
||||||
- copy changelog.md doc\changelog.md
|
- copy changelog.md doc\changelog.md
|
||||||
- cd doc
|
- cd doc
|
||||||
@ -126,14 +121,8 @@ alpha32:
|
|||||||
|
|
||||||
# Generates a new stable version of the application every tag.
|
# Generates a new stable version of the application every tag.
|
||||||
stable:
|
stable:
|
||||||
|
<<: *configure_environment
|
||||||
type: deploy
|
type: deploy
|
||||||
tags:
|
|
||||||
- windows
|
|
||||||
before_script:
|
|
||||||
- '%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'
|
|
||||||
script:
|
script:
|
||||||
- copy changelog.md doc\changelog.md
|
- copy changelog.md doc\changelog.md
|
||||||
- cd doc
|
- cd doc
|
||||||
|
Loading…
Reference in New Issue
Block a user