All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH-for-5.2 v4 00/17] ci: Move various jobs from Travis to GitLab CI
@ 2020-11-08 20:45 Philippe Mathieu-Daudé
  2020-11-08 20:45 ` [PATCH-for-5.2 v4 01/17] configure: Check vhost-user is available to build vhost-user-blk-server Philippe Mathieu-Daudé
                   ` (18 more replies)
  0 siblings, 19 replies; 55+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-08 20:45 UTC (permalink / raw)
  To: qemu-devel
  Cc: Fam Zheng, Thomas Huth, Daniel P . Berrange, Eduardo Habkost,
	Michael S. Tsirkin, Alex Bennée, Aleksandar Rikalo,
	Wainer dos Santos Moschetta, Paolo Bonzini, Igor Mammedov,
	Philippe Mathieu-Daudé,
	Aurelien Jarno, Richard Henderson

We have various job covered on Travis-CI, but recommend the
community to use GitLab, so build failures are missed.

We need help to move the jobs to GitLab (we will keep the s390x
and ppc64 containerized jobs on Travis as there is no similar
offer on GitLab). Start moving jobs.

Resulting pipelines (96 jobs in 71 minutes and 4 seconds)
  https://gitlab.com/philmd/qemu/-/pipelines/213351318
  https://gitlab.com/philmd/qemu/-/pipelines/213378500

Patches 1-3 are included because without them some jobs are
failing; but they will be merged via different trees.

Since v3:
- moving various other jobs
- make some jobs optional

Since v2:
- Run m68k qtests (Thomas)
- Reworded hw/9pfs description (Greg)
- Added tags

Since v1:
- Fix Xen+9pfs config (Paolo)
- Run AVR qtests (Thomas)

Based-on: <20201104115706.3101190-1-philmd@redhat.com>

Philippe Mathieu-Daudé (16):
  configure: Check vhost-user is available to build
    vhost-user-blk-server
  hw/i386/acpi-build: Fix maybe-uninitialized error when ACPI hotplug
    off
  MAINTAINERS: Add gitlab-pipeline-status script to GitLab CI section
  gitlab-ci: Split CONFIGURE_ARGS one argument per line for
    build-disabled
  gitlab-ci: Update 'build-disabled' to cover all configurable options
  gitlab-ci: Move job testing --without-default-devices across to gitlab
  gitlab-ci: Move linux-user debug-tcg test across to gitlab
  gitlab-ci: Move gprof/gcov test across to gitlab
  gitlab-ci: Move user-static test across to gitlab
  gitlab-ci: Move tools-only and softfloat tests across to gitlab
  gitlab-ci: Move coroutine tests across to gitlab
  tests/docker: Install lttng-ust-devel package in Fedora image
  gitlab-ci: Move trace backend tests across to gitlab
  gitlab-ci: Add test for Xen (on CentOS 7)
  gitlab-ci: Make some ARM 32-bit jobs optional
  gitlab-ci: Make MIPS user-mode 32-bit little-endian job optional

Stefan Hajnoczi (1):
  meson: always include contrib/libvhost-user

 configure                                  |   3 +
 meson.build                                |   6 +-
 hw/i386/acpi-build.c                       |  45 ++--
 .gitlab-ci.d/crossbuilds.yml               |   9 +
 .gitlab-ci.yml                             | 228 +++++++++++++++++++--
 .travis.yml                                |  78 -------
 MAINTAINERS                                |   3 +-
 scripts/{travis => ci}/coverage-summary.sh |   2 +-
 tests/docker/dockerfiles/fedora.docker     |   1 +
 9 files changed, 249 insertions(+), 126 deletions(-)
 rename scripts/{travis => ci}/coverage-summary.sh (92%)

-- 
2.26.2




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

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

Thread overview: 55+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-08 20:45 [PATCH-for-5.2 v4 00/17] ci: Move various jobs from Travis to GitLab CI Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-5.2 v4 01/17] configure: Check vhost-user is available to build vhost-user-blk-server Philippe Mathieu-Daudé
2020-11-09  8:34   ` Thomas Huth
2020-11-08 20:45 ` [PATCH-for-5.2 v4 02/17] meson: always include contrib/libvhost-user Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-5.2 v4 03/17] hw/i386/acpi-build: Fix maybe-uninitialized error when ACPI hotplug off Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-6.0 v4 04/17] MAINTAINERS: Add gitlab-pipeline-status script to GitLab CI section Philippe Mathieu-Daudé
2020-11-09 10:06   ` Thomas Huth
2020-11-09 19:29   ` Wainer dos Santos Moschetta
2020-11-08 20:45 ` [PATCH-for-6.0 v4 05/17] gitlab-ci: Split CONFIGURE_ARGS one argument per line for build-disabled Philippe Mathieu-Daudé
2020-11-09 20:57   ` Wainer dos Santos Moschetta
2020-11-08 20:45 ` [PATCH-for-6.0 v4 06/17] gitlab-ci: Update 'build-disabled' to cover all configurable options Philippe Mathieu-Daudé
2020-11-09 10:16   ` Thomas Huth
2020-11-08 20:45 ` [PATCH-for-6.0 v4 07/17] gitlab-ci: Move job testing --without-default-devices across to gitlab Philippe Mathieu-Daudé
2020-11-09 10:20   ` Thomas Huth
2020-11-09 11:04     ` Philippe Mathieu-Daudé
2020-11-09 11:18       ` Thomas Huth
2020-11-09 13:02         ` Philippe Mathieu-Daudé
2020-11-10 13:44   ` Wainer dos Santos Moschetta
2020-11-10 14:01     ` Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-6.0 v4 08/17] gitlab-ci: Move linux-user debug-tcg test " Philippe Mathieu-Daudé
2020-11-10 14:23   ` Wainer dos Santos Moschetta
2020-11-10 19:34   ` Alex Bennée
2020-11-08 20:45 ` [PATCH-for-6.0 v4 09/17] gitlab-ci: Move gprof/gcov " Philippe Mathieu-Daudé
2020-11-10 15:03   ` Wainer dos Santos Moschetta
2020-11-08 20:45 ` [PATCH-for-6.0 v4 10/17] gitlab-ci: Move user-static " Philippe Mathieu-Daudé
2020-11-10 15:06   ` Wainer dos Santos Moschetta
2020-11-08 20:45 ` [PATCH-for-6.0 v4 11/17] gitlab-ci: Move tools-only and softfloat tests " Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-6.0 v4 12/17] gitlab-ci: Move coroutine " Philippe Mathieu-Daudé
2020-11-09  9:42   ` Stefan Hajnoczi
2020-11-10 17:15   ` Wainer dos Santos Moschetta
2020-11-08 20:45 ` [PATCH-for-6.0 v4 13/17] tests/docker: Install lttng-ust-devel package in Fedora image Philippe Mathieu-Daudé
2020-11-09  9:42   ` Stefan Hajnoczi
2020-11-10 17:29   ` Wainer dos Santos Moschetta
2020-11-08 20:45 ` [PATCH-for-6.0 v4 14/17] gitlab-ci: Move trace backend tests across to gitlab Philippe Mathieu-Daudé
2020-11-09  9:48   ` Stefan Hajnoczi
2020-11-10 18:12   ` Wainer dos Santos Moschetta
2020-11-11  8:42     ` Philippe Mathieu-Daudé
2020-11-11  8:45       ` Philippe Mathieu-Daudé
2020-11-11  8:50       ` Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-6.0 v4 15/17] gitlab-ci: Add test for Xen (on CentOS 7) Philippe Mathieu-Daudé
2020-11-08 20:45   ` Philippe Mathieu-Daudé
2020-11-26 17:38   ` Anthony PERARD via
2020-11-26 17:38     ` Anthony PERARD
2020-11-26 17:45     ` Eduardo Habkost
2020-11-26 17:45       ` Eduardo Habkost
2020-11-27 14:24       ` Anthony PERARD via
2020-11-27 14:24         ` Anthony PERARD
2020-11-30 21:28         ` Stefano Stabellini
2020-11-30 21:28           ` Stefano Stabellini
2020-11-08 20:45 ` [PATCH-for-6.0 v4 16/17] gitlab-ci: Make some ARM 32-bit jobs optional Philippe Mathieu-Daudé
2020-11-08 22:00   ` Philippe Mathieu-Daudé
2020-11-08 20:45 ` [PATCH-for-6.0 v4 17/17] gitlab-ci: Make MIPS user-mode 32-bit little-endian job optional Philippe Mathieu-Daudé
2020-11-10 15:55 ` [PATCH-for-5.2 v4 00/17] ci: Move various jobs from Travis to GitLab CI Alex Bennée
2020-11-10 16:07   ` Philippe Mathieu-Daudé
2020-12-09 11:06 ` Thomas Huth

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.