diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2022-08-09 08:55:34 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2022-08-09 09:05:39 +0000 |
commit | bc07143f418766ea7ad46f5f4618dd30afa9a89a (patch) | |
tree | c402fdc424a0aaf34e60a3730aad33be2029e4ef | |
parent | d9eb140b131eed7988ff9161807d06d2498844c8 (diff) |
ci: move no-tests check before the default ones
-rw-r--r-- | .gitlab-ci.yml | 34 |
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 |