mbox series

[PULL,00/14] testing updates (python, plugins)

Message ID 20201002113645.17693-1-alex.bennee@linaro.org
Headers show
Series testing updates (python, plugins) | expand

Message

Alex Bennée Oct. 2, 2020, 11:36 a.m. UTC
The following changes since commit b5ce42f5d138d7546f9faa2decbd6ee8702243a3:

  Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/ide-pull-request' into staging (2020-10-01 19:55:10 +0100)

are available in the Git repository at:

  https://github.com/stsquad/qemu.git tags/pull-testing-and-python-021020-1

for you to fetch changes up to 2614670b7585ce4ec503546bc3023844d392f270:

  gitlab: split deprecated job into build/check stages (2020-10-02 12:31:34 +0100)

----------------------------------------------------------------
Python testing updates:

  - drop python 3.5 test from travis
  - replace Debian 9 containers with 10
  - increase cross build timeout
  - bump minimum python version in configure
  - move user plugins tests to gitlab
  - split deprecated builds into build and test

----------------------------------------------------------------
Alex Bennée (2):
      gitlab: move linux-user plugins test across to gitlab
      gitlab: split deprecated job into build/check stages

Thomas Huth (12):
      migration: Silence compiler warning in global_state_store_running()
      travis.yml: Drop the default softmmu builds
      travis.yml: Update Travis to use Bionic and Focal instead of Xenial
      travis.yml: Drop the superfluous Python 3.6 build
      travis.yml: Drop the Python 3.5 build
      tests/docker: Use Fedora containers for MinGW cross-builds in the gitlab-CI
      gitlab-ci: Remove the Debian9-based containers and containers-layer3
      tests/docker: Update the tricore container to debian 10
      shippable.yml: Remove the Debian9-based MinGW cross-compiler tests
      tests/docker: Remove old Debian 9 containers
      gitlab-ci: Increase the timeout for the cross-compiler builds
      configure: Bump the minimum required Python version to 3.6

 docs/conf.py                                       |  4 +-
 configure                                          |  4 +-
 migration/global_state.c                           |  4 +-
 .gitlab-ci.d/containers.yml                        | 38 ++++---------
 .gitlab-ci.d/crossbuilds.yml                       |  5 +-
 .gitlab-ci.yml                                     | 29 +++++++++-
 .shippable.yml                                     |  4 --
 .travis.yml                                        | 66 +++++-----------------
 tests/docker/Makefile.include                      |  2 +-
 .../docker/dockerfiles/debian-tricore-cross.docker |  2 +-
 tests/docker/dockerfiles/debian-win32-cross.docker | 38 -------------
 tests/docker/dockerfiles/debian-win64-cross.docker | 45 ---------------
 tests/docker/dockerfiles/debian9-mxe.docker        | 21 -------
 tests/docker/dockerfiles/debian9.docker            | 32 -----------
 tests/docker/dockerfiles/fedora-win32-cross.docker | 42 ++++++++++++++
 tests/docker/dockerfiles/fedora-win64-cross.docker | 38 +++++++++++++
 tests/qemu-iotests/iotests.py                      |  2 -
 17 files changed, 142 insertions(+), 234 deletions(-)
 delete mode 100644 tests/docker/dockerfiles/debian-win32-cross.docker
 delete mode 100644 tests/docker/dockerfiles/debian-win64-cross.docker
 delete mode 100644 tests/docker/dockerfiles/debian9-mxe.docker
 delete mode 100644 tests/docker/dockerfiles/debian9.docker
 create mode 100644 tests/docker/dockerfiles/fedora-win32-cross.docker
 create mode 100644 tests/docker/dockerfiles/fedora-win64-cross.docker

Comments

Peter Maydell Oct. 2, 2020, 1:29 p.m. UTC | #1
On Fri, 2 Oct 2020 at 12:36, Alex Bennée <alex.bennee@linaro.org> wrote:
>

> The following changes since commit b5ce42f5d138d7546f9faa2decbd6ee8702243a3:

>

>   Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/ide-pull-request' into staging (2020-10-01 19:55:10 +0100)

>

> are available in the Git repository at:

>

>   https://github.com/stsquad/qemu.git tags/pull-testing-and-python-021020-1

>

> for you to fetch changes up to 2614670b7585ce4ec503546bc3023844d392f270:

>

>   gitlab: split deprecated job into build/check stages (2020-10-02 12:31:34 +0100)

>

> ----------------------------------------------------------------

> Python testing updates:

>

>   - drop python 3.5 test from travis

>   - replace Debian 9 containers with 10

>   - increase cross build timeout

>   - bump minimum python version in configure

>   - move user plugins tests to gitlab

>   - split deprecated builds into build and test



Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.2
for any user-visible changes.

-- PMM