From 36dba3380888f809ba455f294cffcbb454581380 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 28 Sep 2018 15:55:56 +0200 Subject: [PATCH] build: Test builds with a single driver with no deps So that we can be sure that the build doesn't break when those drivers are not built. --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 05e8306..68bca73 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,11 @@ before_script: build: stage: build script: - - meson . _build + # Build with a driver that doesn't need imaging, or nss + - meson -Ddrivers=elan . _build + - ninja -C _build + # And build with everything + - meson -Ddrivers=all . _build - ninja -C _build - ninja -C _build install