]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
.gitlab-ci.yml: combined the slow build with the separate build dir
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 15 Oct 2015 19:23:44 +0000 (21:23 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Thu, 15 Oct 2015 19:23:50 +0000 (21:23 +0200)
.gitlab-ci.yml

index 32b80aae99e4c971de038cd556ea52f43cc94a5b..332abe8f88d419dfdb31021b8e44a52995d2f4cd 100644 (file)
@@ -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