From 529ab493829636cefe32514fcee9fde1da4240cf Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Mon, 27 Nov 2017 11:00:02 +0000 Subject: [PATCH] ci: Detect if code compile with SASL disabled Signed-off-by: Frediano Ziglio Acked-by: Snir Sheriber --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4dc3fffa..32a7401b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,9 +17,12 @@ makecheck: - make - make -C server check || (cat server/tests/test-suite.log && exit 1) -statistics: +# check non-standard options, currently +# --enable-statistics compile statistic code +# --without-sasl disable SASL +options: script: - - ./autogen.sh --enable-statistics + - ./autogen.sh --enable-statistics --without-sasl - make - make -C server check || (cat server/tests/test-suite.log && exit 1)