Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Oct 16, 2023
1 parent e0a349e commit 6280f46
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,35 +94,35 @@ def getRpmAutobakeFactory(mtrDbPool):
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.ShellSequence(
steps.ShellCommand(
name="Fetch packages for MariaDB-compat",
commands=[
util.ShellArg(
command=[
"wget",
"--no-check-certificate",
"-cO",
"../MariaDB-shared-5.3.%(kw:arch)s.rpm",
util.Interpolate(
os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
+ "/helper_files/mariadb-shared-5.3-%(kw:arch)s.rpm",
arch=getArch,
),
],
command=[
"wget",
"--no-check-certificate",
"-cO",
"../MariaDB-shared-5.3.%(kw:arch)s.rpm",
util.Interpolate(
os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
+ "/helper_files/mariadb-shared-5.3-%(kw:arch)s.rpm",
arch=getArch,
),
util.ShellArg(
command=[
"wget",
"--no-check-certificate",
"-cO",
"../MariaDB-shared-10.1.%(kw:arch)s.rpm",
util.Interpolate(
os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
+ "/helper_files/mariadb-shared-10.1-kvm-rpm-%(kw:rpm_type)s-%(kw:arch)s.rpm",
arch=getArch,
rpm_type=util.Property("rpm_type"),
),
],
],
doStepIf=hasCompat,
)
)
f_rpm_autobake.addStep(
steps.ShellCommand(
name="Fetch packages for MariaDB-shared",
command=[
"wget",
"--no-check-certificate",
"-cO",
"../MariaDB-shared-10.1.%(kw:arch)s.rpm",
util.Interpolate(
os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
+ "/helper_files/mariadb-shared-10.1-kvm-rpm-%(kw:rpm_type)s-%(kw:arch)s.rpm",
arch=getArch,
rpm_type=util.Property("rpm_type"),
),
],
doStepIf=hasCompat,
Expand Down

0 comments on commit 6280f46

Please sign in to comment.