From: Nikos Mavrogiannopoulos Date: Tue, 5 Apr 2016 07:08:14 +0000 (+0200) Subject: .gitlab-ci.yml: added C99 target for the library X-Git-Tag: gnutls_3_5_0~203 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf0972ef1bdc78ee0156c7fbdb0f59a34aeb800a;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: added C99 target for the library This compiles the library using gcc options for the C99 standard. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9392a5fb9f..77dff4ac23 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,15 @@ Build and Check - separate build dir (x86): - nettle3 except: - tags -Build and ABI-check (x86-64): +Build with C99 flags: + script: + - make autoreconf && mkdir -p build && cd build && + CFLAGS="-g -O2 -std=c99" ../configure --disable-doc --disable-cxx --disable-guile --disable-non-suiteb-curves && make -j4 -C gl && make -j4 -C lib && make -j4 -C libdane + tags: + - nettle3 + except: + - tags +Build with ABI-check (x86-64): script: - make autoreconf && mkdir -p build && cd build && ../configure --disable-doc --disable-cxx --disable-guile --disable-non-suiteb-curves && make -j4 && make abi-check