summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-05-03 11:54:04 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-05-03 11:54:04 +0200
commitaba5a54204c316597b16fdf69894212173873145 (patch)
tree9b67d671c9e01f776858d3596666d95d2a085e39
parentfca89a2d2a912ce82f5e23c7a7a496ca8a7a73f4 (diff)
downloadgnutls-aba5a54204c316597b16fdf69894212173873145.tar.gz
.gitlab-ci.yml: enabled coverage run in the x86 build
-rw-r--r--.gitlab-ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cdf4c550fe..0ed936a90e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,7 +12,7 @@ Compile minimal library:
- linux
except:
- tags
-Build and Check with asan and coverage run:
+Build and Check with asan:
script:
- make autoreconf && CFLAGS="-fsanitize=address -g -O2" LDFLAGS="-static-libasan"
./configure --disable-doc --enable-code-coverage --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile &&
@@ -38,10 +38,11 @@ Build and Check with C99 and ubsan:
Build and Check - separate build dir (x86):
script:
- make autoreconf && mkdir -p build && cd build &&
- ../configure --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests &&
- make -j4 && make check -j4
+ ../configure --disable-non-suiteb-curves --with-included-libtasn1 --enable-seccomp-tests --disable-doc --disable-valgrind-tests --enable-code-coverage &&
+ make -j4 && make check -j4 && make local-code-coverage-output
tags:
- x86
+ - lcov
- nettle3
- linux
except: