summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-29 10:30:20 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-29 10:30:20 +0100
commit0d42c018d1031e1e87263c85b02e13037bd958d1 (patch)
tree21bf656eec55a3f92750f2f0eed18a3bcf9d6b1e
parent18d6b624473b3864908bb010e37189513fd095b1 (diff)
downloadlibtasn1-0d42c018d1031e1e87263c85b02e13037bd958d1.tar.gz
.gitlab-ci.yml: don't build documentation
-rw-r--r--.gitlab-ci.yml4
1 files 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