Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KMT fix use-local-if-possible architecture discovery #30693

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tasks/kernel_matrix_testing/kmt_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class MacOS:
virtlogd_conf = get_homebrew_prefix() / "etc/libvirt/virtlogd.conf"
ddvm_rsa = kmt_dir / "ddvm_rsa"

packages = ["aria2", "fio", "socat", "libvirt", "gnu-sed", "qemu", "libvirt"]
packages = ["aria2", "fio", "socat", "libvirt", "gnu-sed", "qemu", "libvirt", "wget"]

@staticmethod
def assert_user_in_docker_group(_):
Expand Down
2 changes: 1 addition & 1 deletion tasks/kmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def gen_config_from_ci_pipeline(
if test_job.status == "failed" and job.component == vmconfig_template:
vm_arch = test_job.arch
if use_local_if_possible and vm_arch == local_arch:
vm_arch = local_arch
vm_arch = "local"

results = test_job.get_test_results()
for test, result in results.items():
Expand Down
Loading