-
Notifications
You must be signed in to change notification settings - Fork 52
/
config.yml
305 lines (259 loc) · 9.01 KB
/
config.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2.1
parameters:
build_extensive:
type: boolean
default: false
workflows:
test-regular:
# This workflow is about 400 credits
when:
not: << pipeline.parameters.build_extensive >>
jobs:
- unit_tests_cpython:
name: unit-tests-cpython<< matrix.python_version >>-pg<< matrix.postgres_version >>-redis<< matrix.redis_version >>
matrix:
parameters:
python_version: ["3.9", "3.12"]
postgres_version: ["15.0"]
redis_version: ["5.0"]
- integration_tests_cpython:
name: integration-tests-cpython<< matrix.python_version >>-pg<< matrix.postgres_version >>-redis<< matrix.redis_version >>
matrix:
parameters:
python_version: ["3.9", "3.12"]
postgres_version: ["15.0"]
redis_version: ["5.0"]
- lint:
name: lint-cpython-3-10
docker_image: cimg/python:3.10
- build_docs:
name: build-docs-cpython-3-10
docker_image: cimg/python:3.10
test-extensive:
# This workflow is about 10K credits
when: << pipeline.parameters.build_extensive >>
jobs:
- unit_tests_cpython:
name: unit-tests-cpython<< matrix.python_version >>-pg<< matrix.postgres_version >>-redis<< matrix.redis_version >>
matrix:
parameters:
python_version: [3.9", "3.10", "3.11", "3.12"]
postgres_version: ["9.6", "11.16", "13.7", "15.0"]
redis_version: ["5.0", "6.2", "7.0"]
- integration_tests_cpython:
name: integration-tests-cpython<< matrix.python_version >>-pg<< matrix.postgres_version >>-redis<< matrix.redis_version >>
matrix:
parameters:
python_version: ["3.9", "3.10", "3.11", "3.12"]
postgres_version: ["9.6", "11.16", "13.7", "15.0"]
redis_version: ["5.0", "6.2", "7.0"]
- lint:
name: lint-cpython-3-10
docker_image: cimg/python:3.10
- build_docs:
name: build-docs-cpython-3-10
docker_image: cimg/python:3.10
commands:
install_dependencies:
steps:
- run:
name: apt update
command: |
set +e
$SUDO apt update
echo
- run:
name: Installing psql client, enchant, netcat, rust
command: $SUDO apt -y install postgresql-client netcat python3-enchant rustc
- run:
name: Installing poetry if needed
command: which poetry || curl -sSL https://install.python-poetry.org | POETRY_HOME=/usr python3 -
- restore_cache:
keys:
- v4-dependencies-{{ .Environment.CIRCLE_JOB }}-{{ checksum
"poetry.lock" }}
# fallback to using the latest cache if no exact match is found
- v4-dependencies-{{ .Environment.CIRCLE_JOB }}
- run:
name: install python dependencies
working_directory: irrd
environment:
POETRY_VIRTUALENVS_IN_PROJECT: true
command: poetry -n --no-ansi --no-root --with=dev,docs install
- save_cache:
paths:
- /mnt/ramdisk/.venv
key: v4-dependencies-{{ .Environment.CIRCLE_JOB }}-{{ checksum
"poetry.lock" }}
wait_for_postgres:
steps:
- run:
name: Waiting for PostgreSQL to be ready
command: |
for i in `seq 1 10`;
do
nc -z localhost 5432 && echo Success && exit 0
echo -n .
sleep 1
done
echo Failed waiting for PostgreSQL && exit 1
run_unit_tests:
steps:
- run:
name: run regular tests
command: poetry -n --no-ansi run py.test -s -vvvv --cov=irrd irrd --junitxml=test-reports/junit.xml --cov-fail-under=100 --cov-report term-missing:skip-covered
create_integration_test_db:
steps:
- run:
name: Creating additional database 1
command: |
psql -U root -h localhost -d circle_test -c "CREATE DATABASE circle_test_integration_1;"
- run:
name: Creating additional database 2
command: |
psql -U root -h localhost -d circle_test -c "CREATE DATABASE circle_test_integration_2;"
- run:
name: Creating additional database 3
command: |
psql -U root -h localhost -d circle_test -c "CREATE DATABASE circle_test_integration_3;"
run_integration_tests:
steps:
- run:
name: run integration tests
command: poetry -n --no-ansi run py.test irrd/integration_tests/run.py -s
store_results:
steps:
- store_test_results:
path: test-reports
- store_artifacts:
path: /tmp/pytest-of-circleci/
jobs:
unit_tests_cpython:
parameters:
python_version:
type: string
postgres_version:
type: string
redis_version:
type: string
resource_class: small
working_directory: /mnt/ramdisk
docker:
- image: cimg/python:<< parameters.python_version >>
environment:
IRRD_DATABASE_URL: 'postgresql://root@localhost/circle_test'
IRRD_REDIS_URL: 'redis://localhost'
PYTHON_INTERPRETER: python3
SUDO: sudo
- image: cimg/postgres:<< parameters.postgres_version >>
environment:
POSTGRES_USER: root
POSTGRES_DB: circle_test
POSTGRES_HOST_AUTH_METHOD: trust
command: postgres -c track_commit_timestamp=true
- image: cimg/redis:<< parameters.redis_version >>
# - image: cimg/rust:1.65
steps:
- checkout
- install_dependencies
- wait_for_postgres
- run_unit_tests
- store_results
integration_tests_cpython:
parameters:
python_version:
type: string
postgres_version:
type: string
redis_version:
type: string
resource_class: large
working_directory: /mnt/ramdisk
docker:
- image: cimg/python:<< parameters.python_version >>
environment:
IRRD_DATABASE_URL_INTEGRATION_1: 'postgresql://root@localhost/circle_test_integration_1'
IRRD_DATABASE_URL_INTEGRATION_2: 'postgresql://root@localhost/circle_test_integration_2'
IRRD_DATABASE_URL_INTEGRATION_3: 'postgresql://root@localhost/circle_test_integration_3'
IRRD_REDIS_URL_INTEGRATION_1: 'redis://localhost/4'
IRRD_REDIS_URL_INTEGRATION_2: 'redis://localhost/5'
IRRD_REDIS_URL_INTEGRATION_3: 'redis://localhost/6'
PYTHON_INTERPRETER: python3
SUDO: sudo
- image: cimg/postgres:<< parameters.postgres_version >>
environment:
POSTGRES_USER: root
POSTGRES_DB: circle_test
POSTGRES_HOST_AUTH_METHOD: trust
command: postgres -c track_commit_timestamp=true
- image: cimg/redis:<< parameters.redis_version >>
# - image: cimg/rust:1.65
steps:
- checkout
- install_dependencies
- wait_for_postgres
- create_integration_test_db
- run_integration_tests
- store_results
lint:
parameters:
docker_image:
type: string
resource_class: small
working_directory: /mnt/ramdisk
docker:
- image: << parameters.docker_image >>
environment:
PYTHON_INTERPRETER: python3
SUDO: sudo
# - image: cimg/rust:1.65
steps:
- checkout
- install_dependencies
- run:
name: run ruff
command: poetry -n --no-ansi run ruff irrd
- run:
name: run isort
command: poetry -n --no-ansi run isort --check --diff irrd
- run:
name: run mypy
command: poetry -n --no-ansi run mypy irrd
- run:
name: run black
command: poetry -n --no-ansi run black --check irrd
build_docs:
parameters:
docker_image:
type: string
resource_class: small
working_directory: /mnt/ramdisk
docker:
- image: << parameters.docker_image >>
environment:
PYTHON_INTERPRETER: python3
SUDO: sudo
SPHINX_IMMATERIAL_EXTERNAL_RESOURCE_CACHE_DIR: sphinx_immaterial_cache
# - image: cimg/rust:1.65
steps:
- checkout
- install_dependencies
- restore_cache:
keys: v1-docs-cache
# Sphinx_immaterial does parallel downloads that don't work
# well on CircleCI. There is no setting, so we just edit
# the max number of workers. Bit gross, but this isn't our
# production doc build anyways, that happens on RTD without hacks.
- run:
name: hack sphinx_immaterial
command: |
sed -i 's/max_workers=33/max_workers=2/' /mnt/ramdisk/.venv/lib/py*/site-packages/sphinx_immaterial/google_fonts.py
- run:
name: build docs
command: poetry -n --no-ansi run sphinx-build -nW -b spelling docs/ docs/build
- save_cache:
paths:
- ./sphinx_immaterial_cache
key: v1-docs-cache