On 24/07/18 11:00, Eduardo Lima (Etrunko) wrote: > Signed-off-by: Eduardo Lima (Etrunko) <etrunko@xxxxxxxxxx> > --- > .gitlab-ci.yml | 31 ++++++++++++++++++++++++++++++- > 1 file changed, 30 insertions(+), 1 deletion(-) > > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml > index 50fb7a15..44dc26d3 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 python3-devel meson ninja-build I have removed python3-devel dependency locally. > -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=true || (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=false 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 > @@ -41,6 +56,20 @@ check-valgrind: > - make > - make check-valgrind || (cat server/tests/test-suite-memcheck.log && exit 1) > > +meson-check-valgrind: > + script: > + - dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y > + - dnf debuginfo-install spice-server glib2 -y > + - > > + dnf install valgrind > + gstreamer1-libav gstreamer1-plugins-ugly gstreamer1-plugins-good gstreamer1-plugins-bad-free > + -y > + - > > + CFLAGS='-O2 -pipe -g -D_FORTIFY_SOURCE=0' > + meson -Dextra-checks=true -Dcelt051=true build > + - ninja -C build > + - (cd build && meson test --wrap=valgrind) || (cat build/meson-logs/testlog.txt && exit 1) > + > syntax-check: > script: > - ./autogen.sh --enable-celt051 > -- Eduardo de Barros Lima (Etrunko) Software Engineer - RedHat etrunko@xxxxxxxxxx _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel