From 0d42c018d1031e1e87263c85b02e13037bd958d1 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Mon, 29 Feb 2016 10:30:20 +0100 Subject: .gitlab-ci.yml: don't build documentation --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c33b6e7..553bb76 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,12 @@ # See http://doc.gitlab.com/ce/ci/yaml/ for documentation. Build and Check (x86-64): script: - - git submodule update --init && make autoreconf && ./configure && make -j4 && make -j4 check + - git submodule update --init && make autoreconf && ./configure --disable-doc && make -j4 && make -j4 check except: - tags Build and Check with asan: script: - git submodule update --init && make autoreconf && CFLAGS="-fsanitize=address -g - -O2" LDFLAGS="-static-libasan" ./configure --disable-valgrind-tests && make -j4 && make check -j4 + -O2" LDFLAGS="-static-libasan" ./configure --disable-doc --disable-valgrind-tests && make -j4 && make check -j4 except: - tags -- cgit v1.2.1