[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 1/5] gitlab-ci: Document 'build-tcg-disabled' is a KVM X86 job
- To: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx>, qemu-devel@xxxxxxxxxx
- From: Wainer dos Santos Moschetta <wainersm@xxxxxxxxxx>
- Date: Fri, 11 Dec 2020 14:03:30 -0300
- Cc: Thomas Huth <thuth@xxxxxxxxxx>, Christian Borntraeger <borntraeger@xxxxxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Marcelo Tosatti <mtosatti@xxxxxxxxxx>, kvm@xxxxxxxxxxxxxxx, Paolo Bonzini <pbonzini@xxxxxxxxxx>, Anthony Perard <anthony.perard@xxxxxxxxxx>, qemu-s390x@xxxxxxxxxx, Halil Pasic <pasic@xxxxxxxxxxxxx>, Willian Rampazzo <wrampazz@xxxxxxxxxx>, Paul Durrant <paul@xxxxxxx>, Cornelia Huck <cohuck@xxxxxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxxx, Alex Bennée <alex.bennee@xxxxxxxxxx>, Claudio Fontana <cfontana@xxxxxxx>
- Delivery-date: Sat, 12 Dec 2020 05:44:41 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Hi,
On 12/7/20 10:14 AM, Philippe Mathieu-Daudé wrote:
Document what this job cover (build X86 targets with
KVM being the single accelerator available).
Reviewed-by: Thomas Huth <thuth@xxxxxxxxxx>
Signed-off-by: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx>
---
.gitlab-ci.yml | 5 +++++
1 file changed, 5 insertions(+)
Reviewed-by: Wainer dos Santos Moschetta <wainersm@xxxxxxxxxx>
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d0173e82b16..ee31b1020fe 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -220,6 +220,11 @@ build-disabled:
s390x-softmmu i386-linux-user
MAKE_CHECK_ARGS: check-qtest SPEED=slow
+# This jobs explicitly disable TCG (--disable-tcg), KVM is detected by
+# the configure script. The container doesn't contain Xen headers so
+# Xen accelerator is not detected / selected. As result it build the
+# i386-softmmu and x86_64-softmmu with KVM being the single accelerator
+# available.
build-tcg-disabled:
<<: *native_build_job_definition
variables:
|