summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-26 14:41:12 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-02-26 14:41:12 +0100
commit506ada3459b8e162865bfd7bb89698a457aaaae6 (patch)
tree419c51d14bdc0ef8f128cc09511ad5ba5e9ec511 /.gitlab-ci.yml
parent7cf49a7e48a078e6c6a6cb1f1539621b7194742e (diff)
downloadgnutls-506ada3459b8e162865bfd7bb89698a457aaaae6.tar.gz
.gitlab-ci.yml: added compilation rule with libubsan
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d123c4e71f..37d44fc0e0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,6 +21,16 @@ Build and Check with asan:
- nettle3
except:
- tags
+Build and Check with ubsan:
+ script:
+ - git submodule update --init && make autoreconf && rm -f tests/suite/mini-eagain2.c &&CFLAGS="-fsanitize=undefined -g
+ -O2" LDFLAGS="-static-libubsan" ./configure --disable-doc --with-included-libtasn1 --disable-valgrind-tests --disable-non-suiteb-curves --disable-guile
+ && make -j4 && make check -j4
+ tags:
+ - ubsan
+ - nettle3
+ except:
+ - tags
Build and Check - separate build dir (x86):
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build &&