forked from twidi/django-adv-cache-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
132 lines (113 loc) · 2.5 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
stages:
- lint
- django3.2
- django4.1
- django4.2
- publish
.pytest:
image: python:$PYTHON_VERSION
variables:
DJANGO_SETTINGS_MODULE: "adv_cache_tag.tests.testproject.settings"
before_script:
- python -m pip install --upgrade pip
- pip install poetry
- poetry add --group dev django@$DJANGO_VERSION
- poetry install
script:
- poetry run pytest
# Lint
lint:
stage: lint
image: python:3.11
before_script:
- python -m pip install --upgrade pip
- pip install poetry
- poetry install
script:
- poetry run black adv_cache_tag --check
- poetry run ruff adv_cache_tag
# Django 3.2
django3.2-python3.8:
stage: django3.2
extends: .pytest
variables:
PYTHON_VERSION: "3.8"
DJANGO_VERSION: "3.2"
django3.2-python3.9:
stage: django3.2
extends: .pytest
variables:
PYTHON_VERSION: "3.9"
DJANGO_VERSION: "3.2"
django3.2-python3.10:
stage: django3.2
extends: .pytest
variables:
PYTHON_VERSION: "3.10"
DJANGO_VERSION: "3.2"
django3.2-python3.11:
stage: django3.2
extends: .pytest
variables:
PYTHON_VERSION: "3.11"
DJANGO_VERSION: "3.2"
# Django 4.1
django4.1-python3.8:
stage: django4.1
extends: .pytest
variables:
PYTHON_VERSION: "3.8"
DJANGO_VERSION: "4.1"
django4.1-python3.9:
stage: django4.1
extends: .pytest
variables:
PYTHON_VERSION: "3.9"
DJANGO_VERSION: "4.1"
django4.1-python3.10:
stage: django4.1
extends: .pytest
variables:
PYTHON_VERSION: "3.10"
DJANGO_VERSION: "4.1"
django4.1-python3.11:
stage: django4.1
extends: .pytest
variables:
PYTHON_VERSION: "3.11"
DJANGO_VERSION: "4.1"
# Django 4.2
django4.2-python3.8:
stage: django4.2
extends: .pytest
variables:
PYTHON_VERSION: "3.8"
DJANGO_VERSION: "4.2"
django4.2-python3.9:
stage: django4.2
extends: .pytest
variables:
PYTHON_VERSION: "3.9"
DJANGO_VERSION: "4.2"
django4.2-python3.10:
stage: django4.2
extends: .pytest
variables:
PYTHON_VERSION: "3.10"
DJANGO_VERSION: "4.2"
django4.2-python3.11:
stage: django4.2
extends: .pytest
variables:
PYTHON_VERSION: "3.11"
DJANGO_VERSION: "4.2"
publish:
stage: publish
image: python:3.11
script:
- poetry config repositories.cheese_shop https://gitlab.erudit.org/api/v4/projects/332/packages/pypi
- poetry build
- poetry publish --username __token__ --password ${PYPI_API_TOKEN}
- poetry publish --repository cheese_shop --username gitlab-ci-token --password ${CI_JOB_TOKEN}
only:
- tags