forked from nautobot/nautobot
-
Notifications
You must be signed in to change notification settings - Fork 0
389 lines (382 loc) · 15.1 KB
/
Copy pathci_integration.yml
File metadata and controls
389 lines (382 loc) · 15.1 KB
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
---
# Full CI for commits to the integration branches (main, develop, next)
name: "CI - Integration Branch"
on: # yamllint disable
push:
branches:
- "main"
- "develop"
- "next"
workflow_call:
workflow_dispatch:
jobs:
security-tooling:
name: "Security Tooling"
runs-on: "ubuntu-24.04"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Security checks"
uses: "./.github/actions/security-checks"
check-schema:
name: "Run REST API schema checks"
runs-on: "ubuntu-24.04"
env:
INVOKE_NAUTOBOT_LOCAL: "True"
NAUTOBOT_DB_USER: "nautobot"
NAUTOBOT_DB_PASSWORD: "decinablesprewad"
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql"
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py"
services:
postgres:
image: "postgres:14-alpine"
env:
POSTGRES_USER: "nautobot"
POSTGRES_PASSWORD: "decinablesprewad"
POSTGRES_DB: "nautobot"
ports:
- "5432:5432"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "" # override default "--only dev"
poetry-version: "2.1.4"
python-version: "3.14"
- name: "Run check-schema"
# REST API schema generation currently includes GraphQL schema generation, which is dependent on the DB :-(
run: "poetry run invoke migrate check-schema"
ui-build-check:
name: "Check UI src and dist files validity and integrity"
runs-on: "ubuntu-24.04"
env:
INVOKE_NAUTOBOT_LOCAL: "True"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "--only dev --only linting"
poetry-version: "2.1.4"
python-version: "3.14"
- name: "Setup Node.js"
uses: "actions/setup-node@v4"
with:
node-version: "24"
- name: "Install npm dependencies"
run: "poetry run invoke npm --command ci"
- name: "Calculate checksum of originally committed UI dist files"
shell: bash
run: |
original_checksum=$(find nautobot/project-static/dist -type f -exec md5sum {} + | sort -k 2 | md5sum)
echo "original_checksum=$original_checksum" >> "$GITHUB_ENV"
- name: "Build UI from source"
run: "poetry run invoke ui-build"
- name: "Re-calculate checksum of UI dist files after the build"
shell: bash
run: |
updated_checksum=$(find nautobot/project-static/dist -type f -exec md5sum {} + | sort -k 2 | md5sum)
echo "updated_checksum=$updated_checksum" >> "$GITHUB_ENV"
- name: "Compare calculated checksums"
run: |
echo "Comparing UI dist files checksums: \"$original_checksum\" and \"$updated_checksum\"."
if [ "$original_checksum" = "$updated_checksum" ]; then
echo "Checksums match."
else
>&2 echo "ERROR: Checksums do not match. Please verify build."
exit 1
fi
tests-postgres:
# Sticking with Python 3.13 rather than 3.14 here for now, because Django 5.2's test runner doesn't
# support parallel execution under 3.14's default multiprocessing start method. Relevant references:
# https://docs.python.org/3/library/multiprocessing.html#multiprocessing-start-methods
# https://code.djangoproject.com/ticket/36531
name: "Unit tests (PostgreSQL and Python 3.13)"
runs-on: "ubuntu-24.04"
env:
INVOKE_NAUTOBOT_LOCAL: "True"
NAUTOBOT_DB_USER: "nautobot"
NAUTOBOT_DB_PASSWORD: "decinablesprewad"
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql"
services:
postgres:
image: "postgres:14-alpine"
env:
POSTGRES_USER: "nautobot"
POSTGRES_PASSWORD: "decinablesprewad"
POSTGRES_DB: "nautobot"
ports:
- "5432:5432"
redis:
image: "redis:6-alpine"
ports:
- "6379:6379"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "--extras=remote_storage"
poetry-version: "2.1.4"
# Sticking with Python 3.13 rather than 3.14 here for now, because Django 5.2's test runner doesn't
# support parallel execution under 3.14's default multiprocessing start method. Relevant references:
# https://docs.python.org/3/library/multiprocessing.html#multiprocessing-start-methods
# https://code.djangoproject.com/ticket/36531
python-version: "3.13"
- name: "Run unittest"
run: "poetry run invoke tests --failfast --no-keepdb --no-cache-test-fixtures --parallel"
tests-mysql:
name: "Unit tests (MySQL and Python 3.10)"
runs-on: "ubuntu-24.04"
env:
INVOKE_NAUTOBOT_LOCAL: "True"
NAUTOBOT_DB_USER: "root"
NAUTOBOT_DB_PASSWORD: "decinablesprewad"
NAUTOBOT_DB_HOST: "127.0.0.1"
NAUTOBOT_DB_PORT: "3306"
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.mysql"
services:
mysql:
image: "mysql:8"
env:
MYSQL_ROOT_PASSWORD: "decinablesprewad"
MYSQL_PASSWORD: "decinablesprewad"
MYSQL_DATABASE: "nautobot"
ports:
- "3306:3306"
redis:
image: "redis:6-alpine"
ports:
- "6379:6379"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Install Required Dependencies for MySQL Client"
run: "sudo apt-get update && sudo apt-get install --no-install-recommends -y default-libmysqlclient-dev gcc"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "--extras=mysql --extras=remote_storage"
poetry-version: "2.1.4"
python-version: "3.10"
- name: "Run unittest"
run: "poetry run invoke tests --failfast --no-keepdb --no-cache-test-fixtures --parallel"
migration-tests-mysql:
name: "Run migrations against test dataset (MySQL and Python 3.10)"
runs-on: "ubuntu-24.04"
env:
MIGRATION_TEST_DATASET: "development/datasets/nautobot_1.5.16_mysql.tar.gz"
INVOKE_NAUTOBOT_LOCAL: "True"
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py"
NAUTOBOT_DB_USER: "root"
NAUTOBOT_DB_PASSWORD: "decinablesprewad"
NAUTOBOT_DB_HOST: "127.0.0.1"
NAUTOBOT_DB_PORT: "3306"
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.mysql"
services:
mysql:
image: "mysql:8"
env:
MYSQL_ROOT_PASSWORD: "decinablesprewad"
MYSQL_PASSWORD: "decinablesprewad"
MYSQL_DATABASE: "nautobot"
ports:
- "3306:3306"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Install Required Dependencies for MySQL Client"
run: "sudo apt-get update && sudo apt-get install --no-install-recommends -y default-libmysqlclient-dev gcc"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "--extras mysql"
poetry-version: "2.1.4"
python-version: "3.10"
- name: "Run migration test"
run: "poetry run invoke migration-test --db-engine mysql --dataset $MIGRATION_TEST_DATASET"
migration-tests-postgres:
name: "Run migrations against test dataset (PostgreSQL and Python 3.14)"
runs-on: "ubuntu-24.04"
env:
MIGRATION_TEST_DATASET: "development/datasets/nautobot_1.5.16_postgres.tar.gz"
INVOKE_NAUTOBOT_LOCAL: "True"
NAUTOBOT_CONFIG: "nautobot/core/tests/nautobot_config.py"
NAUTOBOT_DB_USER: "nautobot"
NAUTOBOT_DB_PASSWORD: "decinablesprewad"
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql"
PGPASSWORD: "decinablesprewad"
services:
postgres:
image: "postgres:14-alpine"
env:
POSTGRES_USER: "nautobot"
POSTGRES_PASSWORD: "decinablesprewad"
POSTGRES_DB: "nautobot"
ports:
- "5432:5432"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "" # override default "--only dev"
poetry-version: "2.1.4"
python-version: "3.14"
- name: "Run migration test"
run: "poetry run invoke migration-test --db-engine postgres --dataset $MIGRATION_TEST_DATASET"
integration-test:
runs-on: "ubuntu-24.04"
env:
INVOKE_NAUTOBOT_LOCAL: "True"
NAUTOBOT_DB_USER: "nautobot"
NAUTOBOT_DB_PASSWORD: "decinablesprewad"
NAUTOBOT_DB_ENGINE: "django_prometheus.db.backends.postgresql"
NAUTOBOT_SELENIUM_URL: "http://localhost:4444/wd/hub"
services:
postgres:
image: "postgres:14-alpine"
env:
POSTGRES_USER: "nautobot"
POSTGRES_PASSWORD: "decinablesprewad"
POSTGRES_DB: "nautobot"
ports:
- "5432:5432"
redis:
image: "redis:6-alpine"
ports:
- "6379:6379"
selenium:
image: "selenium/standalone-firefox:4.27"
ports:
- "4444:4444"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v6"
with:
poetry-install-options: "" # override default "--only dev"
poetry-version: "2.1.4"
# Sticking with Python 3.13 rather than 3.14 here for now, because Django 5.2's test runner doesn't
# support parallel execution under 3.14's default multiprocessing start method. Relevant references:
# https://docs.python.org/3/library/multiprocessing.html#multiprocessing-start-methods
# https://code.djangoproject.com/ticket/36531
python-version: "3.13"
- name: "Run Integration Tests"
# If NAUTOBOT_SELENIUM_HOST is set to 'localhost' or '127.0.0.1' the connection does not work
run: "NAUTOBOT_SELENIUM_HOST=`hostname -f` poetry run invoke tests --tag integration --no-keepdb"
container-build:
name: "Build Container Images (GHCR Only)"
if: |
github.event_name == 'push' &&
(github.ref_name == 'develop' || github.ref_name == 'next' || github.ref_name == 'ltm-1.6')
needs:
- "check-schema"
- "integration-test"
- "migration-tests-mysql"
- "migration-tests-postgres"
- "tests-mysql"
- "tests-postgres"
- "ui-build-check"
strategy:
fail-fast: true
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
arch: [ "amd64", "arm64" ]
os: [ "ubuntu-24.04", "ubuntu-24.04-arm" ]
exclude:
- os: "ubuntu-24.04"
arch: "arm64"
- os: "ubuntu-24.04-arm"
arch: "amd64"
runs-on: "${{ matrix.os }}"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Set up Docker Buildx"
uses: "docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd" # v4
- name: "Login to GitHub Container Registry"
uses: "docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc" # v2
with:
registry: "ghcr.io"
username: "${{ github.actor }}"
password: "${{ secrets.GITHUB_TOKEN }}"
- name: "Determine if nautobot-version is branch name or from tag name"
id: "versionname"
run: |
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
echo "nautobot-version=${{ github.event.release.tag_name }}" >> $GITHUB_OUTPUT
else
echo "nautobot-version=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
fi
- name: "Build Only Test (prod - final target)"
uses: "./.github/actions/build-nautobot-image"
with:
images: "ghcr.io/nautobot/nautobot"
python-version: "${{ matrix.python-version }}"
nautobot-version: "${{ steps.versionname.outputs.nautobot-version }}"
arch: "${{ matrix.arch }}"
push: false
target: "final"
poetry-parallel: true
cache-scope: "nautobot-${{ steps.versionname.outputs.nautobot-version }}"
- name: "Build and Push (dev - final-dev target)"
uses: "./.github/actions/build-nautobot-image"
with:
images: "ghcr.io/nautobot/nautobot-dev"
python-version: "${{ matrix.python-version }}"
nautobot-version: "${{ steps.versionname.outputs.nautobot-version }}"
arch: "${{ matrix.arch }}"
push: true
target: "final-dev"
poetry-parallel: true
cache-scope: "nautobot-dev-${{ steps.versionname.outputs.nautobot-version }}"
container-merge:
name: "Merge Manifests (publish GHCR, final-dev only)"
if: |
github.event_name == 'push' &&
(github.ref_name == 'develop' || github.ref_name == 'next' || github.ref_name == 'ltm-1.6')
needs:
- "container-build"
runs-on: "ubuntu-24.04"
strategy:
fail-fast: true
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
env:
BUILD_PUSH_CONTAINER_ACTION_DEFAULT_PYTHON_VERSION: "3.14"
BUILD_PUSH_CONTAINER_ACTION_SET_LATEST: "false" # Change this to false for LTM, Pre-release versions force this to false.
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
- name: "Set up Docker Buildx"
uses: "docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd" # v4
- name: "Login to GitHub Container Registry"
uses: "docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc" # v2
with:
registry: "ghcr.io"
username: "${{ github.actor }}"
password: "${{ secrets.GITHUB_TOKEN }}"
- name: "Determine if nautobot-version is branch name or from tag name"
id: "versionname"
run: |
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
echo "nautobot-version=${{ github.event.release.tag_name }}" >> $GITHUB_OUTPUT
else
echo "nautobot-version=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
fi
- name: "Merge (dev - final-dev target)"
uses: "./.github/actions/merge-image-digests"
with:
image: "ghcr.io/nautobot/nautobot-dev"
python-version: "${{ matrix.python-version }}"
nautobot-version: "${{ steps.versionname.outputs.nautobot-version }}"
default-python-version: "${{ env.BUILD_PUSH_CONTAINER_ACTION_DEFAULT_PYTHON_VERSION }}"
set-latest: "${{ env.BUILD_PUSH_CONTAINER_ACTION_SET_LATEST }}"
cache-scope: "nautobot-dev-${{ steps.versionname.outputs.nautobot-version }}"