From e618f2891a390f733ff0e7bb569b27f474b69faf Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Tue, 10 Nov 2015 15:57:00 +0100 Subject: [PATCH] .gitlab-ci.yml: added build check with minimal setup --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 41b7af5e..e3487dfc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,12 @@ Build with separate build dir: ../configure && make -j4 && make check -j4 && make SKIP_LIBOPTS_CHECK=1 dist except: - tags +Build with minimal setup: + script: + - git submodule update --init && autoreconf -fvi && + ./configure --with-local-talloc --without-libnl --without-liboath --enable-local-libopts --without-pam --without-radius --without-utmp --without-libwrap --without-http-parser --without-lz4 --without-gssapi --without-pcl-lib --without-protobuf && make -j4 && make check -j4 + except: + - tags Build and Check with asan: script: - git submodule update --init && autoreconf -fvi && CFLAGS="-fsanitize=address -g -O2" LDFLAGS="-static-libasan" &&