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

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


If we use the system Meson but it is too old, the subsequent "meson configure"
will fail.  Always use the submodule when building with CFI.

Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 699d3884
No related branches found
No related tags found
No related merge requests found
...@@ -19,17 +19,21 @@ include: ...@@ -19,17 +19,21 @@ include:
before_script: before_script:
- JOBS=$(expr $(nproc) + 1) - JOBS=$(expr $(nproc) + 1)
script: script:
- if test -n "$LD_JOBS";
then
scripts/git-submodule.sh update meson ;
fi
- mkdir build - mkdir build
- cd build - cd build
- if test -n "$TARGETS"; - if test -n "$TARGETS";
then then
../configure --enable-werror --disable-docs $CONFIGURE_ARGS --target-list="$TARGETS" ; ../configure --enable-werror --disable-docs ${LD_JOBS:+--meson=internal} $CONFIGURE_ARGS --target-list="$TARGETS" ;
else else
../configure --enable-werror --disable-docs $CONFIGURE_ARGS ; ../configure --enable-werror --disable-docs ${LD_JOBS:+--meson=internal} $CONFIGURE_ARGS ;
fi || { cat config.log meson-logs/meson-log.txt && exit 1; } fi || { cat config.log meson-logs/meson-log.txt && exit 1; }
- if test -n "$LD_JOBS"; - if test -n "$LD_JOBS";
then then
meson configure . -Dbackend_max_links="$LD_JOBS" ; ../meson/meson.py configure . -Dbackend_max_links="$LD_JOBS" ;
fi || exit 1; fi || exit 1;
- make -j"$JOBS" - make -j"$JOBS"
- if test -n "$MAKE_CHECK_ARGS"; - if test -n "$MAKE_CHECK_ARGS";
......
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