Skip to content

Commit

Permalink
use explicit "local" as arch if using local is possible
Browse files Browse the repository at this point in the history
  • Loading branch information
usamasaqib committed Nov 4, 2024
1 parent 8d45d91 commit ec84c70
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit ec84c70

Please sign in to comment.