From: Arnaud Rebillout Date: Thu, 20 Sep 2018 02:46:39 +0000 (+0700) Subject: gitlab-ci: Create two different jobs for autotools and meson builds X-Git-Tag: v12.99.1~244 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d32e61993afafba7f9b07ca9c932564aed32ba45;p=platform%2Fupstream%2Fpulseaudio.git gitlab-ci: Create two different jobs for autotools and meson builds Signed-off-by: Arnaud Rebillout --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5362f12..cd80c45 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ image: registry.freedesktop.org/pulseaudio/pulseaudio/ubuntu:18.04 -build: +build-autotools: stage: build script: - export MAKEFLAGS="-j$(nproc)" @@ -13,10 +13,17 @@ build: - make check-daemon - ulimit -c 0 # don't dump core files on tests that are supposed to assert - make distcheck - - cd .. - - meson . build-meson - - ninja -C build-meson artifacts: paths: - build/ - - build-meson/ + +build-meson: + stage: build + script: + - meson build + - cd build + - ninja + - ninja test + artifacts: + paths: + - build/