From: Nikos Mavrogiannopoulos Date: Thu, 15 Oct 2015 19:23:44 +0000 (+0200) Subject: .gitlab-ci.yml: combined the slow build with the separate build dir X-Git-Tag: gnutls_3_5_0~636 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ecb418ee5c53b4f235dacbb085f2ba4d1396dfc;p=thirdparty%2Fgnutls.git .gitlab-ci.yml: combined the slow build with the separate build dir --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 32b80aae99..332abe8f88 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,13 +1,3 @@ -Build with separate build dir: - script: - - git submodule update --init && make autoreconf && mkdir -p build && cd build && - ../configure --with-included-libtasn1 --disable-doc --disable-valgrind-tests && - make -j4 && make check -j4 - - cat tests/test-suite.log - tags: - - fast - except: - - tags Build minimal: script: - git submodule update --init && make autoreconf && ./configure --with-included-libtasn1 @@ -40,10 +30,11 @@ Build and Check with asan: - fast except: - tags -Build and Check: +Build and Check with separate build dir: script: - - git submodule update --init && make autoreconf && ./configure --with-included-libtasn1 - --disable-doc --disable-valgrind-tests && make -j4 && make check -j2 + - git submodule update --init && make autoreconf && mkdir -p build && cd build && + ../configure --with-included-libtasn1 --disable-doc --disable-valgrind-tests && + make -j4 && make check -j4 - cat tests/test-suite.log tags: - slow