Skip to content

Commit 5bf0e2f

Browse files
tmp
1 parent dfc95bf commit 5bf0e2f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

configuration/builders/infra/runtime.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ def __init__(
108108
) -> ShellStep:
109109

110110
self.step = copy.deepcopy(step)
111-
super().__init__(name=self.step.name, options=self.step.options
111+
super().__init__(
112+
name=self.step.name, options=self.step.options
112113
), "InContainer wrapper only works with ShellStep or its subclasses"
113114
self.container_commit = container_commit
114115
self.docker_environment = docker_environment

configuration/steps/commands/srpm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SRPMCompare(BashScriptCommand):
3434

3535
def __init__(self, workdir: PurePath = PurePath(".")):
3636
ci_rpms_dir = "rpms"
37-
rebuilt_rpms_dir = "~/rpmbuild/RPMS"
37+
rebuilt_rpms_dir = "/home/buildbot/rpmbuild/RPMS"
3838
exclude_rpms = "MariaDB-compat*"
3939
args = [ci_rpms_dir, rebuilt_rpms_dir, exclude_rpms]
4040
super().__init__(script_name="srpm_compare.sh", workdir=workdir, args=args)

0 commit comments

Comments
 (0)