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.
This commit is contained in:
Bastien Nocera 2018-09-28 15:55:56 +02:00
parent c273908471
commit 36dba33808

View file

@ -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