-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
82 lines (73 loc) · 2.91 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright (C) 2019-2022 Marcus Rickert
#
# See https://github.com/marcus67/python_base_app
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
##################################################################################
# Please, beware that this file has been generated! Do not make any changes here #
# but only to python_base_app/templates/gitlab-ci.template.yml! #
##################################################################################
variables:
PIP3: "./bin/pip3.sh"
stages:
- build
- install_and_check
- analyze
- publish
build_pypi:
image: marcusrickert/docker-python-app:latest
stage: build
script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage BUILD --use-dev-dir=.
after_script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage TEARDOWN
artifacts:
when: always
paths:
- dist/little-brother-taskbar-0.1.23.tar.gz
variables:
# Suppress automatic checkout for all sub modules
GIT_SUBMODULE_STRATEGY: recursive
install_pypi:
image: marcusrickert/docker-python-app:latest
stage: install_and_check
script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage INSTALL-PYPI-PACKAGE --use-dev-dir=.
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage TEST --use-dev-dir .
after_script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage TEARDOWN
artifacts:
when: always
paths:
- htmlcov
- coverage.xml
variables:
# Suppress automatic checkout for all sub modules
GIT_SUBMODULE_STRATEGY: recursive
analyze:
image: marcusrickert/docker-python-app:latest
stage: analyze
script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage ANALYZE --use-dev-dir=.
after_script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage TEARDOWN
variables:
# Suppress automatic checkout for all sub modules
GIT_SUBMODULE_STRATEGY: recursive
publish_pypi:
image: marcusrickert/docker-python-app:latest
stage: publish
script:
- PYTHONPATH=contrib/python_base_app python3 ci_toolbox.py --execute-stage PUBLISH-PYPI-PACKAGE --use-dev-dir=.