From fc4e79c3f77f4360064f3614e32557a105458bae Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Mon, 14 Sep 2020 14:21:01 +0100 Subject: [PATCH] travis: Fix build with newer Qemu Qemu requires a bleeding edge version of Python, not found in the current travis environment. Skip building Qemu in that case. Signed-off-by: Andrew Cooper Acked-by: Wei Liu --- scripts/travis-build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/travis-build b/scripts/travis-build index 0cb15a89e4..84d74266a0 100755 --- a/scripts/travis-build +++ b/scripts/travis-build @@ -16,6 +16,11 @@ cfgargs+=("--disable-rombios") cfgargs+=("--enable-docs") cfgargs+=("--with-system-seabios=/usr/share/seabios/bios.bin") +# Qemu requires Python 3.5 or later +if ! type python3 || python3 -c "import sys; res = sys.version_info < (3, 5); exit(not(res))"; then + cfgargs+=("--with-system-qemu=/bin/false") +fi + if [[ "${XEN_TARGET_ARCH}" == "x86_64" ]]; then cfgargs+=("--enable-tools") else -- 2.30.2