From: Nikos Mavrogiannopoulos Date: Mon, 12 Sep 2016 13:31:13 +0000 (+0200) Subject: .gitlab-ci.yml: added build which runs 'make dist' X-Git-Tag: gnutls_3_5_5~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5b1a79f9aed37d2ca294759ba73223f802e62a3;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: added build which runs 'make dist' This tests whether the manpages, info, html, pdf and epub manual are properly generated, and whether any new functions were included into makefiles. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b39ec1c35f..b2739018a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -83,6 +83,21 @@ Fedora/x86_64/syntax-check: except: - tags +Fedora/dist: + script: + - git submodule update --init + - yum install -y gtk-doc texinfo texinfo-tex texlive texlive-supertabular texlive-framed texlive-morefloats texlive-quotchap docbook5-style-xsl docbook-style-xsl ruby zip gnutls-devel + - make autoreconf && ./configure --disable-non-suiteb-curves --enable-gtk-doc --enable-fips140-mode + - make -j4 + - make -C doc gnutls.html + - PATH="$PATH:/usr/share/sgml/docbook/xsl-stylesheets-1.78.1/epub/bin/" make -C doc gnutls.epub + - make -C doc/latex gnutls.pdf + - make dist + tags: + - shared + except: + - tags + Fedora/x86_64/clang: script: - make autoreconf &&