]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
ci: build.sh: Use 'meson setup' explicitly
authorErik Skultety <eskultet@redhat.com>
Wed, 25 Jan 2023 12:22:49 +0000 (13:22 +0100)
committerErik Skultety <eskultet@redhat.com>
Fri, 11 Aug 2023 13:09:04 +0000 (15:09 +0200)
Even though 'setup' is assumed when no other command is given, we're
being explicit in our GitLab recipes, so do the same for the local
build.sh script too.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
ci/build.sh

index 3fa28eafa8de7e80a9488be69c7ff2c5e439cf2b..c7cba6ffa80c4bcbac00216d89bf1f3259476438 100644 (file)
@@ -8,7 +8,7 @@ export VIR_TEST_DEBUG=1
 # populated at build time from the Dockerfile. A typical use case would
 # be to pass options to trigger cross-compilation
 
-meson build --werror $MESON_OPTS $CI_MESON_ARGS || \
+meson setup build --werror $MESON_OPTS $CI_MESON_ARGS || \
 (cat build/meson-logs/meson-log.txt && exit 1)
 
 ninja -C build $CI_NINJA_ARGS