diff options
author | Dylan Van Assche <me@dylanvanassche.be> | 2022-07-25 09:46:30 +0200 |
---|---|---|
committer | Dylan Van Assche <me@dylanvanassche.be> | 2022-07-25 11:01:57 +0200 |
commit | 57637132c92214f7d30dd1a672c2075764e91120 (patch) | |
tree | 4a2eaeba6862ac4b7132dc617d83f520ebf84f87 /.gitlab-ci.yml | |
parent | ba96ccc61587b7b6c31b94826ee7a3c44d795364 (diff) |
ci: build without testcases
Verify if ModemManager builds with everything disabled
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bfc73ba6..5297c6e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -270,3 +270,20 @@ build-meson-release: - ninja -C build test - ninja -C build install - ninja -C build uninstall + +build-no-qmi-no-mbim-no-tests: + stage: build + extends: + - .fdo.distribution-image@ubuntu + - .common_variables + only: + - main + - merge_requests + - tags + - schedules + script: + - NOCONFIGURE=1 ./autogen.sh + - ./configure --prefix=/usr --disable-gtk-doc --disable-introspection --without-qmi --without-mbim --without-tests + - make + - make check + - make install |