Skip to content
Snippets Groups Projects
Commit f15cb4dd authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "CI: set cpu_model to Nehalem for kvm jobs"

parents c3dde993 aa1b19c3
No related branches found
No related tags found
No related merge requests found
...@@ -3,4 +3,13 @@ ...@@ -3,4 +3,13 @@
cpu_mode=custom cpu_mode=custom
# cpu_model=max fails to boot multiple images with QEMU 7.0 and -M virt (works with "-M virt-6.2") # cpu_model=max fails to boot multiple images with QEMU 7.0 and -M virt (works with "-M virt-6.2")
cpu_model=cortex-a72 cpu_model=cortex-a72
{% elif ansible_architecture == 'x86_64' %}
# RHEL 9 are being compiled for the x86_64-v2 architecture which is
# newer than the qemu default of qemu64. Nehalem is apparently the
# oldest model that works for x86_64-v2 and is expected to work on
# Intel and AMD cpus with kvm or qemu.
{% if virt_type == 'kvm' %}
cpu_mode=custom
cpu_model=Nehalem
{% endif %}
{% endif %} {% endif %}
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
voting: false voting: false
files: files:
- ^ansible/roles/(nova-cell)/ - ^ansible/roles/(nova-cell)/
- ^tests/templates/nova-compute-overrides.j2
vars: vars:
virt_type: kvm virt_type: kvm
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment