From 1b081d4689fa866ae753c5fb7a53885e129bfd45 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 1 Dec 2019 22:55:24 +0000 Subject: [PATCH] koji_builder: try more cpus on ppc64le as well This was caused by an issue a while back, but it was on power8 and we are on power9 now so we want to see if it's still happening. Signed-off-by: Kevin Fenzi --- roles/koji_builder/templates/oz.cfg.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/koji_builder/templates/oz.cfg.j2 b/roles/koji_builder/templates/oz.cfg.j2 index 4067d3ed68..5911183f82 100644 --- a/roles/koji_builder/templates/oz.cfg.j2 +++ b/roles/koji_builder/templates/oz.cfg.j2 @@ -10,7 +10,7 @@ image_type = raw # type = kvm # bridge_name = virbr0 {% if ansible_architecture == 'ppc64' or ansible_architecture == 'ppc64le' %} -cpus = 1 +cpus = 4 {% else %} cpus = 4 {% endif %}