Code

Make libsysdb and libsysdbclient private libraries for now.
[sysdb.git] / t / cibuild.sh
index 120d4278b9e7f404d1175cab90626a30d547650d..61f4a8b09b658e3b13c75dd17cc7249517a275d7 100755 (executable)
@@ -7,8 +7,17 @@
 set -ex
 
 ./autogen.sh
-./configure --enable-gcov $CIOPTIONS \
-       CFLAGS="-O0 -Wno-sign-conversion $CICFLAGS" \
+./configure --enable-standards --enable-gcov $CIOPTIONS \
+       CFLAGS="-O0 $CICFLAGS" \
        LDFLAGS="$CILDFLAGS"
 make clean all
-make test
+
+case "$CICFLAGS" in
+       *sanitize=address*)
+               # skip regular tests
+               ;;
+       *)
+               make test
+               ;;
+esac
+