[Spice-commits] .gitlab-ci.yml

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jul 3 14:33:15 UTC 2018


 .gitlab-ci.yml |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit 246f3a02b4857a180e15a0efa6504249ac368c05
Author: Eduardo Lima (Etrunko) <etrunko at redhat.com>
Date:   Thu May 17 10:30:45 2018 -0300

    Update gitlab-ci to use meson
    
    Signed-off-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d1288ec..ef7ef2a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,6 +4,7 @@ before_script:
   - >
     dnf install 'dnf-command(copr)' git libtool make libasan
     python3 python3-six python3-pyparsing glib-networking
+    python3-devel meson ninja-build gdk-pixbuf2-devel
     -y
   - dnf copr enable @spice/nightly -y
   - dnf builddep spice -y
@@ -16,3 +17,12 @@ makecheck:
     ./autogen.sh --enable-extra-checks --enable-celt051
   - make
   - make check || (cat 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 -Dextra-checks=true -Dcelt501=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)


More information about the Spice-commits mailing list