The following changes since commit 871c71b1bad2d2647641500603a2236869135c7f:
Merge tag 'pull-block-2021-11-16' of https://gitlab.com/hreitz/qemu into staging (2021-11-16 14:20:39 +0100) are available in the Git repository at: https://github.com/stsquad/qemu.git tags/pull-for-6.2-161121-1 for you to fetch changes up to 9968de0a4a5470bd7b98dcd2fae5d5269908f16b: gitlab: skip cirrus jobs on master and stable branches (2021-11-16 16:19:53 +0000) ---------------------------------------------------------------- Misc build and test fixes: - force NOUSER for base docker images - don't run TCG VM tests by default - remove useless meson test - add Centos 8 custom runner - split up custom-runners to individual files - skip cirrus checks on master/stable branches ---------------------------------------------------------------- Alex Bennée (3): tests/docker: force NOUSER=1 for base images tests/vm: sort the special variable list tests/vm: don't build using TCG by default Cleber Rosa (1): Jobs based on custom runners: add CentOS Stream 8 Daniel P. Berrangé (1): gitlab: skip cirrus jobs on master and stable branches Paolo Bonzini (1): meson: remove useless libdl test Philippe Mathieu-Daudé (1): gitlab-ci: Split custom-runners.yml in one file per runner docs/devel/ci-jobs.rst.inc | 7 + meson.build | 8 +- .gitlab-ci.d/cirrus.yml | 3 + .gitlab-ci.d/custom-runners.yml | 239 +-------------------- .../custom-runners/centos-stream-8-x86_64.yml | 28 +++ .gitlab-ci.d/custom-runners/ubuntu-18.04-s390x.yml | 118 ++++++++++ .../custom-runners/ubuntu-20.04-aarch64.yml | 118 ++++++++++ accel/tcg/meson.build | 2 +- .../ci/org.centos/stream/8/build-environment.yml | 51 +++++ scripts/ci/org.centos/stream/8/x86_64/configure | 208 ++++++++++++++++++ scripts/ci/org.centos/stream/8/x86_64/test-avocado | 70 ++++++ scripts/ci/org.centos/stream/README | 17 ++ scripts/ci/setup/build-environment.yml | 38 ++++ tests/docker/Makefile.include | 3 + tests/vm/Makefile.include | 29 ++- 15 files changed, 686 insertions(+), 253 deletions(-) create mode 100644 .gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml create mode 100644 .gitlab-ci.d/custom-runners/ubuntu-18.04-s390x.yml create mode 100644 .gitlab-ci.d/custom-runners/ubuntu-20.04-aarch64.yml create mode 100644 scripts/ci/org.centos/stream/8/build-environment.yml create mode 100755 scripts/ci/org.centos/stream/8/x86_64/configure create mode 100755 scripts/ci/org.centos/stream/8/x86_64/test-avocado create mode 100644 scripts/ci/org.centos/stream/README -- 2.30.2