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 6280f46 commit 379f6ac
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions common_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,12 @@ def getRpmAutobakeFactory(mtrDbPool):
f_rpm_autobake.addStep(
steps.ShellCommand(
name="Fetch packages for MariaDB-compat",
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=util.Interpolate(
"wget --no-check-certificate -cO ../MariaDB-shared-5.3.%(kw:arch)s.rpm"
+ os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
+ "/helper_files/mariadb-shared-5.3-%(kw:arch)s.rpm",
arch=getArch,
),
doStepIf=hasCompat,
)
)
Expand Down

0 comments on commit 379f6ac

Please sign in to comment.