.gitlab-ci.yml: compile and run make check with libasan

This commit is contained in:
Nikos Mavrogiannopoulos
2015-11-06 15:10:17 +01:00
parent 1782dcb264
commit e8484a2aea

View File

@@ -4,3 +4,9 @@ Build with separate build dir:
../configure && make -j4 && make check -j4 && make SKIP_LIBOPTS_CHECK=1 dist
except:
- tags
Build and Check with asan:
script:
- git submodule update --init && autoreconf -fvi && CFLAGS="-fsanitize=address -g -O2" LDFLAGS="-static-libasan" &&
./configure && make -j4 && make check -j4
except:
- tags