-
Notifications
You must be signed in to change notification settings - Fork 26
/
common_factories.py
701 lines (660 loc) · 25.1 KB
/
common_factories.py
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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
from twisted.internet import defer
from buildbot.plugins import *
from buildbot.process import results
from buildbot.process.factory import BuildFactory
from buildbot.process.properties import Properties, Property
from buildbot.process.remotecommand import RemoteCommand
from buildbot.steps.mtrlogobserver import MTR, MtrLogObserver
from buildbot.steps.package.rpm.rpmlint import RpmLint
from buildbot.steps.shell import Compile, SetPropertyFromCommand, ShellCommand, Test
from buildbot.steps.source.github import GitHub
from constants import *
from utils import *
# TODO for FetchTestData/getLastNFailedBuildsFactory
#
# * do something about skips (makes little sense to run N failed tests if
# they're all skipped)
# * the way SELECT works it looks for {limit} unique test names within last
# {limit*scale} failures. Better to make buildbot to autotune the scale.
# The smaller it is, the faster will the query run (but it's <1s already)
# * uses N=50 now, this could be increased to catch more failures or decreased
# to run faster
# * more branch protection builders should use it
# * run for view protocol and sanitizers
# * how to do it for install/upgrade tests?
#
class FetchTestData(MTR):
def __init__(self, mtrDbPool, test_type, **kwargs):
self.mtrDbPool = mtrDbPool
self.test_type = test_type
super().__init__(dbpool=mtrDbPool, **kwargs)
@defer.inlineCallbacks
def get_tests_for_type(self, branch, typ, limit):
scale = 20
query = f"""
select concat(test_name, ',', test_variant)
from
(select id, test_name, test_variant
from test_failure join test_run on (test_run_id=id)
where branch='{branch}' and typ='{typ}'
order by test_run_id desc limit {limit*scale}) x
group by test_name, test_variant
order by max(id) desc limit {limit}
"""
tests = yield self.runQueryWithRetry(query)
return list(t[0] for t in tests)
@defer.inlineCallbacks
def run(self):
test_re = r"^(?:.+/)?mysql-test/(?:suite/)?(.+?)/(?:[rt]/)?([^/]+)\.(?:test|result|rdiff)$"
branch = self.getProperty("master_branch")
limit = 50
if branch:
tests = yield self.get_tests_for_type(branch, self.test_type, limit)
if len(tests) < limit:
# if there're not enough failures for the given test_type
# bump it up with the failures for the default type.
# "mtr" is what buildbot uses when test_type wasn't set
tests += yield self.get_tests_for_type(
branch, "mtr", limit - len(tests)
)
tests += (
m.expand(r"\1.\2")
for m in (re.search(test_re, f) for f in self.build.allFiles())
if m
)
if tests:
test_args = " ".join(set(tests))
self.setProperty("tests_to_run", test_args)
return results.SUCCESS
def addPostTests(factory):
factory.addStep(saveLogs())
## trigger packages
factory.addStep(
steps.Trigger(
schedulerNames=["s_packages"],
waitForFinish=False,
updateSourceStamp=False,
alwaysRun=True,
set_properties={
"parentbuildername": Property("buildername"),
"tarbuildnum": Property("tarbuildnum"),
"mariadb_version": Property("mariadb_version"),
"master_branch": Property("master_branch"),
},
doStepIf=hasAutobake,
)
)
## trigger bigtest
factory.addStep(
steps.Trigger(
schedulerNames=["s_bigtest"],
waitForFinish=False,
updateSourceStamp=False,
set_properties={
"parentbuildername": Property("buildername"),
"tarbuildnum": Property("tarbuildnum"),
"mariadb_version": Property("mariadb_version"),
"master_branch": Property("master_branch"),
},
doStepIf=hasBigtest,
)
)
# create package and upload to master
factory.addStep(
steps.SetPropertyFromCommand(
command="basename mariadb-*-linux-*.tar.gz",
property="mariadb_binary",
doStepIf=savePackage,
)
)
factory.addStep(
steps.ShellCommand(
name="save_packages",
timeout=7200,
haltOnFailure=True,
command=util.Interpolate(
"""
mkdir -p /packages/%(prop:tarbuildnum)s/%(prop:buildername)s \
&& sha256sum %(prop:mariadb_binary)s >> sha256sums.txt \
&& cp %(prop:mariadb_binary)s sha256sums.txt /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/ \
&& sync /packages/%(prop:tarbuildnum)s
"""
),
doStepIf=savePackage,
)
)
factory.addStep(
steps.Trigger(
name="eco",
schedulerNames=["s_eco"],
waitForFinish=False,
updateSourceStamp=False,
set_properties={
"parentbuildername": Property("buildername"),
"tarbuildnum": Property("tarbuildnum"),
"mariadb_binary": Property("mariadb_binary"),
"mariadb_version": Property("mariadb_version"),
"master_branch": Property("master_branch"),
"parentbuildername": Property("buildername"),
},
doStepIf=lambda step: savePackage(step) and hasEco(step),
)
)
factory.addStep(
steps.ShellCommand(
name="cleanup", command="rm -r * .* 2> /dev/null || true", alwaysRun=True
)
)
return factory
def getBuildFactoryPreTest(build_type="RelWithDebInfo", additional_args=""):
f_quick_build = util.BuildFactory()
f_quick_build.addStep(printEnv())
f_quick_build.addStep(
steps.SetProperty(
property="dockerfile",
value=util.Interpolate("%(kw:url)s", url=dockerfile),
description="dockerfile",
)
)
f_quick_build.addStep(getSourceTarball())
f_quick_build.addStep(
steps.ShellCommand(
name="create html log file",
command=[
"bash",
"-c",
util.Interpolate(
getHTMLLogString(),
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
),
],
)
)
# build steps
f_quick_build.addStep(
steps.Compile(
command=[
"sh",
"-c",
util.Interpolate(
"cmake . -DCMAKE_BUILD_TYPE=%(kw:build_type)s -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER=%(kw:c_compiler)s -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=%(kw:cxx_compiler)s -DPLUGIN_TOKUDB=NO -DPLUGIN_MROONGA=NO -DPLUGIN_SPIDER=YES -DPLUGIN_OQGRAPH=NO -DPLUGIN_PERFSCHEMA=%(kw:perf_schema)s -DPLUGIN_SPHINX=NO %(kw:additional_args)s && make %(kw:verbose_build)s -j%(kw:jobs)s %(kw:create_package)s",
perf_schema=util.Property("perf_schema", default="YES"),
build_type=util.Property("build_type", default=f"{build_type}"),
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
c_compiler=util.Property("c_compiler", default="gcc"),
cxx_compiler=util.Property("cxx_compiler", default="g++"),
additional_args=util.Property(
"additional_args", default=f"{additional_args}"
),
create_package=util.Property("create_package", default="package"),
verbose_build=util.Property("verbose_build", default=""),
),
],
env={"CCACHE_DIR": "/mnt/ccache"},
haltOnFailure="true",
)
)
f_quick_build.addStep(
steps.SetProperty(
name="mark compile step as completed",
property="compile_step_completed",
value=True,
)
)
return f_quick_build
# TODO single function or class object to handle adding tests for different platforms
def addWinTests(
factory: BuildFactory,
mtr_test_type: str,
mtr_env: dict[str, str],
mtr_additional_args: str,
mtr_step_db_pool: str,
mtr_suites: list[str],
create_scripts: bool = False,
) -> BuildFactory:
if "default" in mtr_suites:
cmd = f"..\\mysql-test\\collections\\buildbot_suites.bat && cd .."
else:
suites = ",".join(mtr_suites)
cmd = (
"perl mysql-test-run.pl"
" --verbose-restart"
" --force"
" --testcase-timeout=8"
" --suite-timeout=600"
" --retry=3"
" --suites={suites}"
" --parallel=%(kw:jobs)s"
" %(kw:mtr_additional_args)s"
).format(suites=suites)
if create_scripts:
factory.addStep(
steps.StringDownload(
util.Interpolate(moveMTRLogs(output_dir="$1")),
workerdest="move_logs.sh",
name="Create move Logs script",
alwaysRun=True,
)
)
factory.addStep(
steps.StringDownload(
util.Interpolate(createVar(output_dir="$1")),
workerdest="create_tarball.sh",
name="Create tarball script",
alwaysRun=True,
)
)
factory.addStep(
steps.MTR(
addLogs=True,
name=f"{mtr_test_type} test",
test_type=mtr_test_type,
command=[
"dojob",
'"',
util.Interpolate(
f'"C:\Program Files (x86)\Microsoft Visual Studio\\2022\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=%(kw:arch)s && cd mysql-test && {cmd}',
mtr_additional_args=mtr_additional_args,
jobs=util.Property("jobs", default=4),
arch=util.Property("arch", default="x64"),
),
'"',
],
timeout=600,
haltOnFailure="true",
parallel=mtrJobsMultiplier,
dbpool=mtr_step_db_pool,
autoCreateTables=True,
env=mtr_env,
)
)
factory.addStep(
steps.ShellCommand(
name=f"move {mtr_test_type} mariadb log files",
alwaysRun=True,
command=["dojob", '"' "bash", f"move_logs.sh {mtr_test_type}"],
env={"PATH": ["C:\\Program Files\\Git\\bin\\", "${PATH}"]},
)
)
factory.addStep(
steps.ShellCommand(
name=f"create {mtr_test_type} var.tar archive",
alwaysRun=True,
command=["dojob", '"' "bash", f"create_tarball.sh {mtr_test_type}"],
env={"PATH": ["C:\\Program Files\\Git\\bin\\", "${PATH}"]},
doStepIf=hasFailed,
)
)
return factory
def addTests(
factory: BuildFactory,
mtr_test_type: str,
mtr_step_db_pool: str,
mtr_additional_args: str,
*,
mtr_args: dict[str, str] = test_type_to_mtr_arg,
mtr_feedback_plugin: int = 0,
mtr_retry: int = 3,
mtr_max_save_core: int = 2,
mtr_max_save_datadir: int = 10,
mtr_max_test_fail: int = 20,
mtr_step_timeout: int = 950,
mtr_step_auto_create_tables: bool = True,
) -> BuildFactory:
"""
Adds a MTR test run step to the build factory.
Parameters:
- factory: The build factory to which the test step will be added.
- mtr_test_type: The type of test to run, which determines the MTR arguments.
- mtr_step_db_pool: Database pool for the MTR.
- mtr_additional_args: Additional arguments to pass to the MTR.
- mtr_args: A dictionary mapping test types to MTR arguments.
- mtr_feedback_plugin: The feedback plugin to use with the MTR.
- mtr_retry: The number of times to retry a failed test.
- mtr_max_save_core: The maximum number of core dumps to save.
- mtr_max_save_datadir: The maximum number of data directories to save.
- mtr_max_test_fail: The maximum number of test failures before halting.
- mtr_step_timeout: The timeout for the MTR step.
- mtr_step_auto_create_tables: Whether to automatically create tables for the MTR step.
"""
factory.addStep(
steps.MTR(
name=f"{mtr_test_type} test",
logfiles={"mysqld*": "./buildbot/mysql_logs.html"},
test_type=mtr_test_type,
command=[
"bash",
"-c",
util.Interpolate(
f"""
cd mysql-test &&
MTR_FEEDBACK_PLUGIN={mtr_feedback_plugin} exec perl mysql-test-run.pl {mtr_args[mtr_test_type]} --verbose-restart --force --retry={mtr_retry} --max-save-core={mtr_max_save_core} --max-save-datadir={mtr_max_save_datadir} --max-test-fail={mtr_max_test_fail} --mem --parallel=$(expr %(kw:jobs)s \* 2) %(kw:mtr_additional_args)s
""",
mtr_additional_args=mtr_additional_args,
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
),
],
timeout=mtr_step_timeout,
haltOnFailure="true",
parallel=mtrJobsMultiplier,
dbpool=mtr_step_db_pool,
autoCreateTables=mtr_step_auto_create_tables,
env=MTR_ENV,
)
)
factory.addStep(
steps.ShellCommand(
name=f"move {mtr_test_type} mariadb log files",
alwaysRun=True,
command=[
"bash",
"-c",
util.Interpolate(
moveMTRLogs(output_dir=mtr_test_type),
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN"),
),
],
)
)
factory.addStep(
steps.ShellCommand(
name=f"create {mtr_test_type} var archive",
alwaysRun=True,
command=[
"bash",
"-c",
util.Interpolate(createVar(output_dir=mtr_test_type)),
],
doStepIf=hasFailed,
)
)
return factory
def addGaleraTests(factory, mtrDbPool):
factory.addStep(
steps.MTR(
name="Galera tests",
alwaysRun=True,
description="testing galera",
descriptionDone="test galera",
logfiles={"mysqld*": "./buildbot/mysql_logs.html"},
test_type="nm",
command=[
"sh",
"-c",
util.Interpolate(
r"""
cd mysql-test &&
if [ -f "$WSREP_PROVIDER" ]; then exec perl mysql-test-run.pl --verbose-restart --force --retry=3 --max-save-core=2 --max-save-datadir=10 --max-test-fail=20 --mem --big-test --parallel=$(expr %(kw:jobs)s \* 2) %(kw:mtr_additional_args)s --suite=wsrep,galera,galera_3nodes,galera_3nodes_sr; fi
""",
mtr_additional_args=util.Property(
"mtr_additional_args", default=""
),
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
),
],
timeout=950,
haltOnFailure="true",
parallel=mtrJobsMultiplier,
dbpool=mtrDbPool,
autoCreateTables=True,
env=mtrEnv,
doStepIf=lambda props: hasGalera(props)
and props.hasProperty("compile_step_completed"),
)
)
factory.addStep(
steps.ShellCommand(
name="move mariadb galera log files",
alwaysRun=True,
command=[
"bash",
"-c",
util.Interpolate(
"mv ./buildbot/logs ./buildbot/logs_main\n"
+ moveMTRLogs()
+ "\nmv ./buildbot/logs ./buildbot/logs_galera; mv ./buildbot/logs_main ./buildbot/logs; mv ./buildbot/logs_galera ./buildbot/logs/galera\n",
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
),
],
doStepIf=lambda props: hasGalera(props)
and props.hasProperty("compile_step_completed"),
)
)
return factory
def getQuickBuildFactory(test_type, mtrDbPool):
f = getBuildFactoryPreTest()
addTests(f, test_type, mtrDbPool, util.Property("mtr_additional_args", default=""))
addGaleraTests(f, mtrDbPool)
return addPostTests(f)
def getLastNFailedBuildsFactory(test_type, mtrDbPool):
@util.renderer
def getTests(props):
mtr_additional_args = props.getProperty("mtr_additional_args", "--suite=main")
tests_to_run = props.getProperty("tests_to_run", None)
if tests_to_run:
mtr_additional_args = re.sub(
r"--suite=\S*", "--skip-not-found " + tests_to_run, mtr_additional_args
)
return mtr_additional_args
config = {
"nm": {
"args": ("RelWithDebInfo", "-DWITH_EMBEDDED_SERVER=ON"),
"steps": ("nm", "cursor", "ps", "emb", "emb-ps", "view"),
},
"debug": {
"args": ("Debug", "-DWITH_EMBEDDED_SERVER=ON"),
"steps": (
"debug",
"debug-cursor",
"debug-ps",
"debug-emb",
"debug-emb-ps",
"debug-view",
),
},
}
f = getBuildFactoryPreTest(*config[test_type]["args"])
for typ in config[test_type]["steps"]:
f.addStep(
FetchTestData(
name=f"Get last N failed {typ} tests",
mtrDbPool=mtrDbPool,
test_type=typ,
)
)
addTests(f, typ, mtrDbPool, getTests)
return addPostTests(f)
def getRpmAutobakeFactory(mtrDbPool):
## f_rpm_autobake
f_rpm_autobake = util.BuildFactory()
f_rpm_autobake.addStep(printEnv())
f_rpm_autobake.addStep(
steps.SetProperty(
property="dockerfile",
value=util.Interpolate("%(kw:url)s", url=dockerfile),
description="dockerfile",
)
)
f_rpm_autobake.workdir = (
f_rpm_autobake.workdir + "/padding_for_CPACK_RPM_BUILD_SOURCE_DIRS_PREFIX/"
)
f_rpm_autobake.addStep(
steps.ShellCommand(
name="fetch packages for MariaDB-compat",
command=[
"sh",
"-c",
util.Interpolate(
'wget --no-check-certificate -cO ../MariaDB-shared-5.3.%(kw:arch)s.rpm "%(kw:url)s/helper_files/mariadb-shared-5.3-%(kw:arch)s.rpm" && wget -cO ../MariaDB-shared-10.1.%(kw:arch)s.rpm "%(kw:url)s/helper_files/mariadb-shared-10.1-kvm-rpm-%(kw:rpm_type)s-%(kw:arch)s.rpm"',
arch=getArch,
url=os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org"),
rpm_type=util.Property("rpm_type"),
),
],
doStepIf=hasCompat,
)
)
f_rpm_autobake.addStep(getSourceTarball())
f_rpm_autobake.addStep(steps.ShellCommand(command="ls .."))
# build steps
f_rpm_autobake.addStep(
steps.ShellCommand(
logfiles={"CMakeCache.txt": "CMakeCache.txt"},
name="cmake",
command=[
"sh",
"-c",
util.Interpolate(
"export PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH && cmake . -DBUILD_CONFIG=mysql_release -DRPM=%(kw:rpm_type)s -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache %(kw:mtr_additional_args)s",
mtr_additional_args=util.Property(
"mtr_additional_args", default=""
),
rpm_type=util.Property("rpm_type"),
),
],
env={"CCACHE_DIR": "/mnt/ccache"},
description="cmake",
)
)
f_rpm_autobake.addStep(steps.RpmLint(doStepIf=hasRpmLint))
f_rpm_autobake.addStep(
steps.Compile(
command=[
"sh",
"-xc",
util.Interpolate(
"""
mkdir -p rpms srpms
if grep -qw CPACK_RPM_SOURCE_PKG_BUILD_PARAMS CPackSourceConfig.cmake; then
make package_source
mv *.src.rpm srpms/
fi
export PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH && make -j %(kw:jobs)s package
""",
jobs=util.Property("jobs", default="$(getconf _NPROCESSORS_ONLN)"),
),
],
env={"CCACHE_DIR": "/mnt/ccache"},
description="make package",
)
)
# list rpm contents
f_rpm_autobake.addStep(
steps.ShellCommand(
command=[
"sh",
"-c",
'for rpm in *.rpm; do echo $rpm ; rpm -q --qf "[%{FILEMODES:perms} %{FILEUSERNAME} %{FILEGROUPNAME} .%-36{FILENAMES}\n]" $rpm; echo "------------------------------------------------"; done',
],
description="list rpm contents",
)
)
# upload binaries
f_rpm_autobake.addStep(
steps.SetPropertyFromCommand(command="ls -1 *.rpm", extract_fn=ls2string)
)
f_rpm_autobake.addStep(
steps.ShellCommand(
command=[
"bash",
"-xc",
util.Interpolate(
"""
if [ -e MariaDB-shared-10.1.*.rpm ]; then
rm MariaDB-shared-10.1.*.rpm
fi
mv *.rpm rpms/
createrepo rpms/
cat << EOF > MariaDB.repo
[MariaDB-%(prop:branch)s]
name=MariaDB %(prop:branch)s repo (build %(prop:tarbuildnum)s)
baseurl=%(kw:url)s/%(prop:tarbuildnum)s/%(prop:buildername)s/rpms
gpgcheck=0
EOF
if [ "%(prop:rpm_type)s" = rhel8 ] || [ "%(prop:rpm_type)s" = centosstream8 ] || [ "%(prop:rpm_type)s" = almalinux8 ] || [ "%(prop:rpm_type)s" = rockylinux8 ]; then
echo "module_hotfixes = 1" >> MariaDB.repo
fi
""",
url=os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org"),
),
]
)
)
f_rpm_autobake.addStep(
steps.ShellCommand(
name="save_packages",
timeout=7200,
haltOnFailure=True,
command=util.Interpolate(
"""
mkdir -p /packages/%(prop:tarbuildnum)s/%(prop:buildername)s &&
cp -r MariaDB.repo rpms srpms /packages/%(prop:tarbuildnum)s/%(prop:buildername)s/ &&
ln -sf %(prop:tarbuildnum)s/%(prop:buildername)s/MariaDB.repo /packages/%(prop:branch)s-latest-%(prop:buildername)s.repo &&
sync /packages/%(prop:tarbuildnum)s
"""
),
doStepIf=lambda step: hasFiles(step) and savePackage(step),
descriptionDone=util.Interpolate(
"""
Repository available with: curl %(kw:url)s/%(prop:tarbuildnum)s/%(prop:buildername)s/MariaDB.repo -o /etc/yum.repos.d/MariaDB.repo""",
url=os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org"),
),
)
)
f_rpm_autobake.addStep(
steps.Trigger(
name="dockerlibrary",
schedulerNames=["s_dockerlibrary"],
waitForFinish=False,
updateSourceStamp=False,
set_properties={
"tarbuildnum": Property("tarbuildnum"),
"mariadb_version": Property("mariadb_version"),
"master_branch": Property("master_branch"),
"parentbuildername": Property("buildername"),
"ubi": "-ubi",
"GH_WORKFLOW": "test-image-ent.yml",
},
doStepIf=lambda step: hasDockerLibrary(step),
)
)
f_rpm_autobake.addStep(
steps.Trigger(
name="install",
schedulerNames=["s_install"],
waitForFinish=False,
updateSourceStamp=False,
set_properties={
"tarbuildnum": Property("tarbuildnum"),
"mariadb_version": Property("mariadb_version"),
"master_branch": Property("master_branch"),
"parentbuildername": Property("buildername"),
},
doStepIf=lambda step: hasInstall(step)
and savePackage(step)
and hasFiles(step),
)
)
f_rpm_autobake.addStep(
steps.Trigger(
name="major-minor-upgrade",
schedulerNames=["s_upgrade"],
waitForFinish=False,
updateSourceStamp=False,
set_properties={
"tarbuildnum": Property("tarbuildnum"),
"mariadb_version": Property("mariadb_version"),
"master_branch": Property("master_branch"),
"parentbuildername": Property("buildername"),
},
doStepIf=lambda step: hasUpgrade(step)
and savePackage(step)
and hasFiles(step),
)
)
f_rpm_autobake.addStep(
steps.ShellCommand(
name="cleanup", command="rm -r * .* 2> /dev/null || true", alwaysRun=True
)
)
return f_rpm_autobake