All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] gitlab-ci: Add accelerator-specific Linux jobs
@ 2020-12-06 18:55 ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 58+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-12-06 18:55 UTC (permalink / raw)
  To: qemu-devel
  Cc: Philippe Mathieu-Daudé,
	Alex Bennée, Aleksandar Rikalo, xen-devel, kvm,
	Wainer dos Santos Moschetta, Jiaxun Yang, Willian Rampazzo,
	Paul Durrant, Huacai Chen, Anthony Perard, Marcelo Tosatti,
	Stefano Stabellini, Claudio Fontana, Halil Pasic, Peter Maydell,
	Christian Borntraeger, Cornelia Huck, David Gibson, Thomas Huth,
	Paolo Bonzini, qemu-s390x, Aurelien Jarno, qemu-arm

Hi,

I was custom to use Travis-CI for testing KVM builds on s390x/ppc
with the Travis-CI jobs.

During October Travis-CI became unusable for me (extremely slow,
see [1]). Then my free Travis account got updated to the new
"10K credit minutes allotment" [2] which I burned without reading
the notification email in time (I'd burn them eventually anyway).

Today Travis-CI is pointless to me. While I could pay to run my
QEMU jobs, I don't think it is fair for an Open Source project to
ask its forks to pay for a service.

As we want forks to run some CI before contributing patches, and
we have cross-build Docker images available for Linux hosts, I
added some cross KVM/Xen build jobs to Gitlab-CI.

Cross-building doesn't have the same coverage as native building,
as we can not run the tests. But this is still useful to get link
failures.

Each job is added in its own YAML file, so it is easier to notify
subsystem maintainers in case of troubles.

Resulting pipeline:
https://gitlab.com/philmd/qemu/-/pipelines/225948077

Regards,

Phil.

[1] https://travis-ci.community/t/build-delays-for-open-source-project/10272
[2] https://blog.travis-ci.com/2020-11-02-travis-ci-new-billing

Philippe Mathieu-Daudé (8):
  gitlab-ci: Replace YAML anchors by extends (cross_system_build_job)
  gitlab-ci: Introduce 'cross_accel_build_job' template
  gitlab-ci: Add KVM X86 cross-build jobs
  gitlab-ci: Add KVM ARM cross-build jobs
  gitlab-ci: Add KVM s390x cross-build jobs
  gitlab-ci: Add KVM PPC cross-build jobs
  gitlab-ci: Add KVM MIPS cross-build jobs
  gitlab-ci: Add Xen cross-build jobs

 .gitlab-ci.d/crossbuilds-kvm-arm.yml   |  5 +++
 .gitlab-ci.d/crossbuilds-kvm-mips.yml  |  5 +++
 .gitlab-ci.d/crossbuilds-kvm-ppc.yml   |  5 +++
 .gitlab-ci.d/crossbuilds-kvm-s390x.yml |  6 +++
 .gitlab-ci.d/crossbuilds-kvm-x86.yml   |  6 +++
 .gitlab-ci.d/crossbuilds-xen.yml       | 14 +++++++
 .gitlab-ci.d/crossbuilds.yml           | 52 ++++++++++++++++----------
 .gitlab-ci.yml                         |  6 +++
 MAINTAINERS                            |  6 +++
 9 files changed, 85 insertions(+), 20 deletions(-)
 create mode 100644 .gitlab-ci.d/crossbuilds-kvm-arm.yml
 create mode 100644 .gitlab-ci.d/crossbuilds-kvm-mips.yml
 create mode 100644 .gitlab-ci.d/crossbuilds-kvm-ppc.yml
 create mode 100644 .gitlab-ci.d/crossbuilds-kvm-s390x.yml
 create mode 100644 .gitlab-ci.d/crossbuilds-kvm-x86.yml
 create mode 100644 .gitlab-ci.d/crossbuilds-xen.yml

-- 
2.26.2



^ permalink raw reply	[flat|nested] 58+ messages in thread

end of thread, other threads:[~2020-12-07 11:59 UTC | newest]

Thread overview: 58+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-06 18:55 [PATCH 0/8] gitlab-ci: Add accelerator-specific Linux jobs Philippe Mathieu-Daudé
2020-12-06 18:55 ` Philippe Mathieu-Daudé
2020-12-06 18:55 ` [PATCH 1/8] gitlab-ci: Replace YAML anchors by extends (cross_system_build_job) Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07  5:11   ` Thomas Huth
2020-12-07  5:11     ` Thomas Huth
2020-12-06 18:55 ` [PATCH 2/8] gitlab-ci: Introduce 'cross_accel_build_job' template Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-06 19:23   ` Claudio Fontana
2020-12-06 19:23     ` Claudio Fontana
2020-12-06 23:44     ` Philippe Mathieu-Daudé
2020-12-06 23:44       ` Philippe Mathieu-Daudé
2020-12-06 18:55 ` [PATCH 3/8] gitlab-ci: Add KVM X86 cross-build jobs Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07  5:20   ` Thomas Huth
2020-12-07  5:20     ` Thomas Huth
2020-12-07 10:04     ` Philippe Mathieu-Daudé
2020-12-07 10:04       ` Philippe Mathieu-Daudé
2020-12-06 18:55 ` [PATCH 4/8] gitlab-ci: Add KVM ARM " Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07  5:41   ` Thomas Huth
2020-12-07  5:41     ` Thomas Huth
2020-12-06 18:55 ` [PATCH 5/8] gitlab-ci: Add KVM s390x " Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07  5:46   ` Thomas Huth
2020-12-07  5:46     ` Thomas Huth
2020-12-07 10:00     ` Philippe Mathieu-Daudé
2020-12-07 10:00       ` Philippe Mathieu-Daudé
2020-12-07 10:26       ` Philippe Mathieu-Daudé
2020-12-07 10:26         ` Philippe Mathieu-Daudé
2020-12-07 10:33         ` Thomas Huth
2020-12-07 10:33           ` Thomas Huth
2020-12-07 10:37           ` Philippe Mathieu-Daudé
2020-12-07 10:37             ` Philippe Mathieu-Daudé
2020-12-07 10:25     ` Daniel P. Berrangé
2020-12-07 10:25       ` Daniel P. Berrangé
2020-12-07 10:26       ` Philippe Mathieu-Daudé
2020-12-07 10:26         ` Philippe Mathieu-Daudé
2020-12-07 10:34         ` Daniel P. Berrangé
2020-12-07 10:34           ` Daniel P. Berrangé
2020-12-07 11:14           ` Philippe Mathieu-Daudé
2020-12-07 11:14             ` Philippe Mathieu-Daudé
2020-12-07 11:26             ` Philippe Mathieu-Daudé
2020-12-07 11:26               ` Philippe Mathieu-Daudé
2020-12-06 18:55 ` [PATCH 6/8] gitlab-ci: Add KVM PPC " Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07  1:38   ` David Gibson
2020-12-07  1:38     ` David Gibson
2020-12-07  5:57   ` Thomas Huth
2020-12-07  5:57     ` Thomas Huth
2020-12-06 18:55 ` [PATCH 7/8] gitlab-ci: Add KVM MIPS " Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07  5:58   ` Thomas Huth
2020-12-07  5:58     ` Thomas Huth
2020-12-06 18:55 ` [PATCH 8/8] gitlab-ci: Add Xen " Philippe Mathieu-Daudé
2020-12-06 18:55   ` Philippe Mathieu-Daudé
2020-12-07 10:23 ` [PATCH 0/8] gitlab-ci: Add accelerator-specific Linux jobs Daniel P. Berrangé
2020-12-07 10:23   ` Daniel P. Berrangé

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.