-
Notifications
You must be signed in to change notification settings - Fork 46
566 lines (452 loc) · 15.8 KB
/
packing.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
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
name: packing
on:
push:
pull_request:
pull_request_target:
types: [labeled]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
pack_pip:
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
# Checkout all tags for correct version computation.
with:
fetch-depth: 0
- name: Setup Python and basic packing tools
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install tools for packing and verification
run: pip3 install wheel twine
- name: Pack source and binary files
run: make pip-dist
- name: Verify the package
run: make pip-dist-check
- name: Archive pip artifacts
uses: actions/[email protected]
with:
name: pip_dist
path: pip_dist
retention-days: 1
if-no-files-found: error
run_tests_pip_package_linux:
needs: pack_pip
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Remove connector source code
run: python3 .github/scripts/remove_source_code.py
- name: Install tarantool
uses: tarantool/setup-tarantool@v2
with:
tarantool-version: '2.11'
- name: Download pip package artifacts
uses: actions/[email protected]
with:
name: pip_dist
path: pip_dist
- name: Install the package from pip artifacts
run: pip3 install pip_dist/*.whl
- name: Install test requirements
run: pip3 install -r requirements-test.txt
- name: Install the crud module for testing purposes
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash
sudo apt install -y tt
tt rocks install crud
- name: Run tests
run: make test-pure-install
run_tests_pip_package_windows:
needs: pack_pip
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: windows-2022
strategy:
fail-fast: false
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Remove connector source code
run: python3 .github/scripts/remove_source_code.py
- name: Download pip package artifacts
uses: actions/[email protected]
with:
name: pip_dist
path: pip_dist
- name: Install the package from pip artifacts
run: pip3 install (gci ./pip_dist *.whl).fullname
- name: Install test requirements
run: pip3 install -r requirements-test.txt
- name: Setup WSL for tarantool
uses: Vampire/setup-wsl@v1
with:
distribution: Ubuntu-22.04
- name: Install tarantool
shell: wsl-bash_Ubuntu-22.04 {0}
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash -s
sudo apt install -y tarantool tarantool-dev
- name: Setup test tarantool instance
shell: wsl-bash_Ubuntu-22.04 {0}
run: |
rm -f ./tarantool.pid ./tarantool.log
TNT_PID=$(tarantool ./test/suites/lib/tarantool_python_ci.lua > tarantool.log 2>&1 & echo $!)
touch tarantool.pid
echo $TNT_PID > ./tarantool.pid
- name: Run tests
env:
REMOTE_TARANTOOL_HOST: localhost
REMOTE_TARANTOOL_CONSOLE_PORT: 3302
run: make test-pure-install
- name: Stop test tarantool instance
if: ${{ always() }}
shell: wsl-bash_Ubuntu-22.04 {0}
run: |
cat tarantool.log || true
kill $(cat tarantool.pid) || true
publish_pip:
if: startsWith(github.ref, 'refs/tags')
needs:
- run_tests_pip_package_linux
- run_tests_pip_package_windows
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Setup Python and basic packing tools
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install tools for package publishing
run: pip3 install twine
- name: Download pip package artifacts
uses: actions/[email protected]
with:
name: pip_dist
path: pip_dist
- name: Publish artifacts
run: twine upload -r $PYPI_REPO -u __token__ -p $PYPI_TOKEN pip_dist/*
env:
PYPI_REPO: pypi
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
pack_rpm:
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: ubuntu-20.04
container:
image: ${{ matrix.target.os }}:${{ matrix.target.dist }}
strategy:
fail-fast: false
matrix:
target:
- os: fedora
dist: '34'
- os: fedora
dist: '35'
- os: fedora
dist: '36'
steps:
- name: Bump git version
# Fails to compute package version inside docker otherwise:
# https://github.com/actions/runner/issues/2033
run: dnf install -y git
- name: Clone the connector repo
uses: actions/checkout@v3
# Checkout all tags for correct version computation.
with:
fetch-depth: 0
- name: Set ownership
# Fails to compute package version inside docker otherwise:
# https://github.com/actions/runner/issues/2033
run: chown -R $(id -u):$(id -g) $PWD
- name: Setup Python and various packing tools
run: dnf install -y python3 python3-libs python3-pip python3-setuptools python3-wheel
- name: Install RPM packing tools
run: |
dnf install -y gcc make coreutils diffutils patch
dnf install -y rpm-build rpm-devel rpmlint rpmdevtools
- name: Pack source and binary RPM
run: make rpm-dist
- name: Verify the package
run: make rpm-dist-check
- name: Archive RPM artifacts
uses: actions/[email protected]
with:
name: rpm_dist_${{ matrix.target.os }}_${{ matrix.target.dist }}
path: rpm_dist
retention-days: 1
if-no-files-found: error
run_tests_rpm:
needs: pack_rpm
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: ubuntu-20.04
container:
image: ${{ matrix.target.os }}:${{ matrix.target.dist }}
strategy:
fail-fast: false
matrix:
target:
- os: fedora
dist: '34'
- os: fedora
dist: '35'
- os: fedora
dist: '36'
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Setup Python and test running tools
# cmake rocks fail to install as expected without findutils:
# https://github.com/tarantool/luarocks/issues/14
run: dnf install -y python3 python3-libs python3-pip git make cmake gcc unzip findutils
- name: Remove connector source code
run: python3 .github/scripts/remove_source_code.py
- name: Install tarantool
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash
dnf install -y tarantool tarantool-devel
- name: Download RPM artifacts
uses: actions/[email protected]
with:
name: rpm_dist_${{ matrix.target.os }}_${{ matrix.target.dist }}
path: rpm_dist
- name: Install the package from rpm artifacts
run: dnf install -y rpm_dist/python3-tarantool-*.noarch.rpm
- name: Install test requirements
run: pip3 install -r requirements-test.txt
- name: Install the crud module for testing purposes
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash
sudo dnf install -y tt
tt rocks install crud
- name: Run tests
run: make test-pure-install
publish_rpm:
if: startsWith(github.ref, 'refs/tags')
needs:
- run_tests_rpm
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
target:
- os: fedora
dist: '34'
- os: fedora
dist: '35'
- os: fedora
dist: '36'
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Install tools for package publishing
run: sudo apt install -y curl make
- name: Download RPM artifacts
uses: actions/[email protected]
with:
name: rpm_dist_${{ matrix.target.os }}_${{ matrix.target.dist }}
path: rpm_dist
- name: Publish artifacts
run: |
export FILE_FLAGS=$(find rpm_dist/ -type f -regex '.*\.rpm' \
| xargs -I {} sh -c 'echo -F $(basename {})=@{}' \
| xargs)
echo $FILE_FLAGS
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
-F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
env:
RWS_REPO: https://rws.tarantool.org
RWS_AUTH: ${{ secrets.RWS_AUTH }}
OS: ${{ matrix.target.os }}
DIST: ${{ matrix.target.dist }}
pack_deb:
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
# Checkout all tags for correct version computation
with:
fetch-depth: 0
- name: Install deb packing tools
run: |
sudo apt update
sudo apt install -y devscripts equivs
- name: Make changelog entry for non-release build
if: startsWith(github.ref, 'refs/tags') != true
run: make deb-changelog-entry
- name: Install build tools
run: sudo mk-build-deps -i --tool "apt-get --no-install-recommends -y"
env:
DEBIAN_FRONTEND: noninteractive
- name: Pack source and binary deb
run: make deb-dist
- name: Verify the package
run: make deb-dist-check
- name: Archive deb artifacts
uses: actions/[email protected]
with:
name: deb_dist
path: deb_dist
run_tests_deb:
needs: pack_deb
# We want to run on external PRs, but not on our own internal
# PRs as they'll be run by the push to the branch.
#
# The main trick is described here:
# https://github.com/Dart-Code/Dart-Code/pull/2375
if: (github.event_name == 'push') ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.repository)
runs-on: ubuntu-20.04
container:
image: ${{ matrix.target.os }}:${{ matrix.target.dist }}
strategy:
fail-fast: false
matrix:
target:
- os: ubuntu
dist: focal # 20.04
- os: ubuntu
dist: jammy # 22.04
- os: debian
dist: buster # 10
- os: debian
dist: bullseye # 11
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Prepare apt
run: apt update
- name: Setup Python
run: apt install -y python3 python3-pip git
- name: Remove connector source code
run: python3 .github/scripts/remove_source_code.py
- name: Install tarantool ${{ matrix.tarantool }}
run: |
apt install -y curl
curl -L https://tarantool.io/release/2/installer.sh | bash
apt install -y tarantool tarantool-dev
env:
DEBIAN_FRONTEND: noninteractive
- name: Download deb artifacts
uses: actions/[email protected]
with:
name: deb_dist
path: deb_dist
- name: Install the package from deb artifacts
run: apt install -y `pwd`/deb_dist/python3-tarantool_*.deb
env:
DEBIAN_FRONTEND: noninteractive
- name: Install test requirements
run: pip3 install -r requirements-test.txt
- name: Install the crud module for testing purposes
run: |
curl -L https://tarantool.io/release/2/installer.sh | bash
apt install -y tt
tt rocks install crud
- name: Run tests
run: make test-pure-install
publish_deb:
if: startsWith(github.ref, 'refs/tags')
needs:
- run_tests_deb
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
target:
- os: ubuntu
dist: focal # 20.04
- os: ubuntu
dist: jammy # 22.04
- os: debian
dist: buster # 10
- os: debian
dist: bullseye # 11
steps:
- name: Clone the connector repo
uses: actions/checkout@v3
- name: Install tools for package publishing
run: sudo apt install -y curl make
- name: Download deb artifacts
uses: actions/[email protected]
with:
name: deb_dist
path: deb_dist
- name: Publish artifacts
run: |
export FILE_FLAGS=$(find deb_dist/ -type f -regex '.*\.deb' -or -regex '.*\.dsc' \
| xargs -I {} sh -c 'echo -F $(basename {})=@{}' \
| xargs)
echo $FILE_FLAGS
curl -v -LfsS -X PUT $RWS_REPO/release/modules/$OS/$DIST \
-F product=python3-tarantool $FILE_FLAGS -u $RWS_AUTH
env:
RWS_REPO: https://rws.tarantool.org
RWS_AUTH: ${{ secrets.RWS_AUTH }}
OS: ${{ matrix.target.os }}
DIST: ${{ matrix.target.dist }}