Skip to content
Snippets Groups Projects
Commit 7cf333a3 authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

gitlab-ci: use --meson=git for CFI jobs


Ensure that the meson submodule is checked out by the check targets,
as they will need it to run "meson test".

Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent b802d14d
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,9 @@ include:
- cd build
- if test -n "$TARGETS";
then
../configure --enable-werror --disable-docs ${LD_JOBS:+--meson=internal} $CONFIGURE_ARGS --target-list="$TARGETS" ;
../configure --enable-werror --disable-docs ${LD_JOBS:+--meson=git} $CONFIGURE_ARGS --target-list="$TARGETS" ;
else
../configure --enable-werror --disable-docs ${LD_JOBS:+--meson=internal} $CONFIGURE_ARGS ;
../configure --enable-werror --disable-docs ${LD_JOBS:+--meson=git} $CONFIGURE_ARGS ;
fi || { cat config.log meson-logs/meson-log.txt && exit 1; }
- if test -n "$LD_JOBS";
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment