Hi, This is my current queue for testing/next which I shall submit a PR for on Tuesday in time for rc2. This update adds:
- fixes for Windows builds under docker (+installer) - build fix for --no-default-devices - tweak to docker DEBUG behaviour - run iotests in make check - use travis_retry to deal with flaky tests Rather than just disabling flaky tests I've enabled travis_retry on the check phase. This basically avoids me manually triggering rebuilds to turn the build green again. I think this is OK because actual breakages will just fail again and we want the CI status to be a reliable indicator of something gone wrong rather than being ignored as probably a flaky test. There is a danger that we might be missing the introduction of flakiness into the build but I suspect we wouldn't have picked it up those cases anyway. I think soak/stress tests are probably best handled by maintainers anyway. The following patches need review patch 0017/hw i386 also turn off VMMOUSE is VMPORT is disabl.patch patch 0018/travis enable travis_retry for check phase.patch patch 0019/tests docker invoke the DEBUG shell with noprofil.patch Alex Bennée (7): tests/docker: add test-misc for building tools & docs tests/migration-test: don't spam the logs when we fail tests/dockerfiles: update the win cross builds to stretch shippable: re-enable the windows cross builds hw/i386: also turn off VMMOUSE is VMPORT is disabled travis: enable travis_retry for check phase tests/docker: invoke the DEBUG shell with --noprofile/--norc Marc-André Lureau (1): archive-source: also create a stash for submodules Philippe Mathieu-Daudé (11): tests/docker: Install Sphinx in the Ubuntu images tests/docker: Install Sphinx in the Fedora image tests/docker: Install Ubuntu images noninteractively tests/docker: Install Sphinx in the Debian images tests/docker: Install the NSIS tools in the MinGW capable images tests/docker: Set the correct cross-PKG_CONFIG_PATH in the MXE images tests/docker: Install texinfo in the Fedora image buildsys: The NSIS Windows build requires the documentation installed buildsys: The NSIS Windows build requires qemu-nsis.bmp installed tests/docker: Let the test-mingw test generate a NSIS installer NSIS: Add missing firmware blobs Thomas Huth (4): tests/qemu-iotests/check: Allow tests without groups tests/qemu-iotests/group: Remove some more tests from the "auto" group tests: Run the iotests during "make check" again gitlab-ci: Remove qcow2 tests that are handled by "make check" already .gitlab-ci.yml | 13 +- .shippable.yml | 9 +- .travis.yml | 2 +- Makefile | 3 +- hw/i386/Kconfig | 4 +- qemu.nsi | 3 + scripts/archive-source.sh | 18 +-- tests/Makefile.include | 10 +- tests/check-block.sh | 44 +++++-- tests/docker/Makefile.include | 6 +- .../dockerfiles/debian-win32-cross.docker | 10 +- .../dockerfiles/debian-win64-cross.docker | 10 +- tests/docker/dockerfiles/debian10.docker | 1 + ...{debian8-mxe.docker => debian9-mxe.docker} | 11 +- tests/docker/dockerfiles/debian9.docker | 1 + tests/docker/dockerfiles/fedora.docker | 4 + tests/docker/dockerfiles/ubuntu.docker | 3 +- tests/docker/dockerfiles/ubuntu1804.docker | 3 +- tests/docker/run | 4 +- tests/docker/test-mingw | 4 +- tests/docker/test-misc | 22 ++++ tests/migration-test.c | 19 ++- tests/qemu-iotests-quick.sh | 8 -- tests/qemu-iotests/check | 4 +- tests/qemu-iotests/group | 120 +++++++++--------- 25 files changed, 204 insertions(+), 132 deletions(-) rename tests/docker/dockerfiles/{debian8-mxe.docker => debian9-mxe.docker} (56%) create mode 100755 tests/docker/test-misc delete mode 100755 tests/qemu-iotests-quick.sh -- 2.20.1