In order to convert the existing Makefile target from a manual invocation of mkvenv to one that uses the meson dependency system, we need to not suppress ninja here.
I'm not sure if this creates problems I am not aware of; but invoking ninja here is no longer spurious but will become necessary. Signed-off-by: John Snow <[email protected]> --- .gitlab-ci.d/buildtest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml index 18d72d3058b..2cb2cf25b4a 100644 --- a/.gitlab-ci.d/buildtest.yml +++ b/.gitlab-ci.d/buildtest.yml @@ -101,7 +101,7 @@ crash-test-debian: IMAGE: debian script: - cd build - - make NINJA=":" check-venv + - make check-venv - pyvenv/bin/python3 scripts/device-crash-test -q --tcg-only ./qemu-system-i386 build-system-fedora: @@ -158,7 +158,7 @@ crash-test-fedora: IMAGE: fedora script: - cd build - - make NINJA=":" check-venv + - make check-venv - pyvenv/bin/python3 scripts/device-crash-test -q ./qemu-system-ppc - pyvenv/bin/python3 scripts/device-crash-test -q ./qemu-system-riscv32 -- 2.51.1
