]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
configure: unconditionally install "tooling" group
authorJohn Snow <jsnow@redhat.com>
Wed, 18 Feb 2026 21:34:10 +0000 (16:34 -0500)
committerJohn Snow <jsnow@redhat.com>
Tue, 24 Feb 2026 18:11:29 +0000 (13:11 -0500)
Alongside meson, always ensure our in-tree tooling group and its
out-of-tree dependency, qemu.qmp, is always installed.

As a result, several "check-venv" invocations can be removed from
various testing scripts.

Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20260218213416.674483-16-jsnow@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
.gitlab-ci.d/buildtest.yml
configure
scripts/device-crash-test

index b2db70ff9046fd7ad7cf32ad25269f8f05826954..1b656b9eb087dc5c737d86a230b92125e83a7455 100644 (file)
@@ -101,7 +101,6 @@ crash-test-debian:
     IMAGE: debian
   script:
     - cd build
-    - make NINJA=":" check-venv
     - ./run scripts/device-crash-test -q --tcg-only ./qemu-system-i386
 
 build-system-fedora:
@@ -158,7 +157,6 @@ crash-test-fedora:
     IMAGE: fedora
   script:
     - cd build
-    - make NINJA=":" check-venv
     - ./run scripts/device-crash-test -q ./qemu-system-ppc
     - ./run scripts/device-crash-test -q ./qemu-system-riscv32
 
index 4b61fd3bbf808881710ac8a0ca6f21ff89abab41..c4837eba2b1f61ff0769c5005088c8ed8cb1d024 100755 (executable)
--- a/configure
+++ b/configure
@@ -966,7 +966,7 @@ mkvenv="$python ${source_path}/python/scripts/mkvenv.py"
 # Finish preparing the virtual environment using vendored .whl files
 
 $mkvenv ensuregroup --dir "${source_path}/python/wheels" \
-     ${source_path}/pythondeps.toml meson || exit 1
+     ${source_path}/pythondeps.toml meson tooling || exit 1
 
 # At this point, we expect Meson to be installed and available.
 # We expect mkvenv or pip to have created pyvenv/bin/meson for us.
index 8a91dcaee31b89bcfaa1e87e61e76ea953eb156d..fc86babdf43ed8dcaf0b91a03c68e084abcb2c70 100755 (executable)
@@ -40,8 +40,7 @@ try:
 except ModuleNotFoundError as exc:
     path = Path(__file__).resolve()
     print(f"Module '{exc.name}' not found.")
-    print("  Try 'make check-venv' from your build directory,")
-    print("  and then one way to run this script is like so:")
+    print("  Try running this script like so:")
     print(f'  > $builddir/run "{path}"')
     sys.exit(1)