Signed-off-by: Eduardo Lima (Etrunko) <etrunko@xxxxxxxxxx> --- in v6: - Dropped meson-check-valgrind check. .gitlab-ci.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 50fb7a15..cba41b28 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ before_script: - > dnf install 'dnf-command(copr)' git libtool make libasan orc-devel python3 python3-six python3-pyparsing glib-networking - asciidoc bzip2 + asciidoc bzip2 meson ninja-build -y - dnf copr enable @spice/nightly -y - dnf builddep spice -y @@ -18,6 +18,15 @@ makecheck: - make - make -C server check || (cat server/tests/test-suite.log && exit 1) +meson-makecheck: + script: + - > + CFLAGS='-O2 -pipe -g -fsanitize=address -fno-omit-frame-pointer -Wframe-larger-than=40920' + LDFLAGS='-fsanitize=address -lasan' + meson build -Dcelt051=enabled || (cat build/meson-logs/meson-log.txt && exit 1) + - ninja -C build + - (cd build && meson test) || (cat build/meson-logs/testlog.txt && exit 1) + # check non-standard options, currently # --enable-statistics compile statistic code # --without-sasl disable SASL @@ -27,6 +36,12 @@ options: - make - make -C server check || (cat server/tests/test-suite.log && exit 1) +meson-options: + script: + - meson -Dstatistics=true -Dsasl=false -Dcelt051=disabled build + - ninja -C build + - (cd build && meson test) || (cat build/meson-logs/testlog.txt && exit 1) + check-valgrind: script: - dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y -- 2.14.4 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel