[Spice-commits] .gitlab-ci.yml

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed May 1 18:47:19 UTC 2019


 .gitlab-ci.yml |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit 0c4c3a69169dcaa15e9528e310d2ab30752fd886
Author: Uri Lublin <uril at redhat.com>
Date:   Wed May 1 14:20:54 2019 +0300

    gitlab-ci: build out-of-tree too
    
    One test is enough -- do it in makecheck.
    
    Must git clean first any previous builds.
    
    Signed-off-by: Uri Lublin <uril at redhat.com>
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9ce95c00..2c1f46ad 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,12 +14,18 @@ before_script:
 
 makecheck:
   script:
+  # Also check out-of-tree build
+  - git clean -fdx # cleanup after previous builds
+  - git submodule foreach --recursive git clean -fdx
+  - mkdir builddir
+  - cd builddir
   - >
     CFLAGS='-O2 -pipe -g -fsanitize=address -fno-omit-frame-pointer -Wframe-larger-than=40920'
     LDFLAGS='-fsanitize=address -lasan'
-    ./autogen.sh --enable-celt051
+    ../autogen.sh --enable-celt051
   - make
   - make -C server check || (cat server/tests/test-suite.log && exit 1)
+  - cd ..
 
 meson-makecheck:
   script:


More information about the Spice-commits mailing list