diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-31 15:09:52 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-31 18:28:33 +0100 |
commit | cf4344639bbedb3f941488af75f44da9aa3d8650 (patch) | |
tree | 6dd901b80aa425f7a3a90719d1de646594459c71 | |
parent | 05bad41ba96bb1de2403e845038e4195693d5272 (diff) | |
download | qemu-cf4344639bbedb3f941488af75f44da9aa3d8650.zip qemu-cf4344639bbedb3f941488af75f44da9aa3d8650.tar.gz qemu-cf4344639bbedb3f941488af75f44da9aa3d8650.tar.bz2 |
ci: always invoke meson through pyvenv
Do not assume that the distro-installed meson is compatible with the one
in the virtual environment.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | .gitlab-ci.d/buildtest-template.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml index 8c69c60..39da769 100644 --- a/.gitlab-ci.d/buildtest-template.yml +++ b/.gitlab-ci.d/buildtest-template.yml @@ -66,7 +66,7 @@ - source scripts/ci/gitlab-ci-section - section_start buildenv "Setting up to run tests" - scripts/git-submodule.sh update roms/SLOF - - meson subprojects download $(cd build/subprojects && echo *) + - build/pyvenv/bin/meson subprojects download $(cd build/subprojects && echo *) - cd build - find . -type f -exec touch {} + # Avoid recompiling by hiding ninja with NINJA=":" |