aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml34
1 files changed, 17 insertions, 17 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5297c6e1..9db1c9d5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -125,6 +125,23 @@ build-no-qmi-no-mbim:
- make check
- make install
+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
+
build-qmi-newest-commands:
stage: build
extends:
@@ -270,20 +287,3 @@ 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