On 06/12/2020 19.55, Philippe Mathieu-Daudé wrote: > Cross-build PPC target with KVM and TCG accelerators enabled. > > Signed-off-by: Philippe Mathieu-Daudé <philmd@xxxxxxxxxx> > --- > later this job build KVM-only. > --- > .gitlab-ci.d/crossbuilds-kvm-ppc.yml | 5 +++++ > .gitlab-ci.yml | 1 + > MAINTAINERS | 1 + > 3 files changed, 7 insertions(+) > create mode 100644 .gitlab-ci.d/crossbuilds-kvm-ppc.yml > > diff --git a/.gitlab-ci.d/crossbuilds-kvm-ppc.yml b/.gitlab-ci.d/crossbuilds-kvm-ppc.yml > new file mode 100644 > index 00000000000..9df8bcf5a73 > --- /dev/null > +++ b/.gitlab-ci.d/crossbuilds-kvm-ppc.yml > @@ -0,0 +1,5 @@ > +cross-ppc64el-kvm: > + extends: .cross_accel_build_job > + variables: > + IMAGE: debian-ppc64el-cross > + TARGETS: ppc64-softmmu Compilation of the ppc KVM code should already be covered by the cross-ppc64el-system job, see e.g.: https://gitlab.com/qemu-project/qemu/-/jobs/883985074#L297 Thus there is no need to add a new job for this here. It might be a good idea to remove ppc64-softmmu from the exclude list in crossbuilds.yml, though, so that we also check the 64-bit builds and not only the 32-bit ones. Thomas