aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-04-16 10:55:57 +0200
committerAleksander Morgado <aleksander@aleksander.es>2020-04-16 11:25:55 +0200
commit401fdec82c3516ce439b7442fba5a705ba7243cf (patch)
tree2db4755230aec6ddda06019647476d3061123935 /.gitlab-ci.yml
parentbb5c88b852f4483a4bf411389e8807d7c43ea344 (diff)
ci: add tests for minimal and basic collections
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7cfb041..b58c3da 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -40,6 +40,24 @@ test-no-qrtr:
- make check
- make install
+test-collection-minimal:
+ stage: test
+ script:
+ - NOCONFIGURE=1 ./autogen.sh
+ - ./configure --prefix=/usr --disable-mbim-qmux --disable-qrtr --disable-firmware-update --enable-collection=minimal
+ - make
+ - make check
+ - make install
+
+test-collection-basic:
+ stage: test
+ script:
+ - NOCONFIGURE=1 ./autogen.sh
+ - ./configure --prefix=/usr --disable-mbim-qmux --disable-qrtr --enable-collection=basic
+ - make
+ - make check
+ - make install
+
test-default:
stage: test
script: