Skip to content

Commit

Permalink
Fetch rpm step is not needed anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Feb 28, 2024
1 parent 681bbd9 commit 3a0c35d
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions master-libvirt/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -63,24 +63,24 @@ c["buildbotNetUsageData"] = None


####### UTILS
def downloadRpms():
return ShellCommand(
name="fetch_rpms",
description="fetching rpms",
descriptionDone="fetching rpms...done",
haltOnFailure=True,
command=[
"sh",
"-xc",
util.Interpolate(
"""
wget -r -np -nH --cut-dirs=2 -A *.rpm """
+ os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
+ """/%(prop:tarbuildnum)s/%(prop:parentbuildername)s/rpms/ -P .
"""
),
],
)
# def downloadRpms():
# return ShellCommand(
# name="fetch_rpms",
# description="fetching rpms",
# descriptionDone="fetching rpms...done",
# haltOnFailure=True,
# command=[
# "sh",
# "-xc",
# util.Interpolate(
# """
# wget -r -np -nH --cut-dirs=2 -A *.rpm """
# + os.getenv("ARTIFACTS_URL", default="https://ci.mariadb.org")
# + """/%(prop:tarbuildnum)s/%(prop:parentbuildername)s/rpms/ -P .
# """
# ),
# ],
# )


def getRpmUpgradeStep():
Expand Down

0 comments on commit 3a0c35d

Please sign in to comment.