From fef8082364086a59039d9bb05f98890c5307d6e4 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Sun, 24 Oct 2021 14:24:35 -0700 Subject: [PATCH] GitLab CI: Move the Lintian check. Move the Lintian check from the Ubuntu .dpkg job to the Debian package job. This should reduce the time it takes to build merge request pipelines a little bit. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 885ff6d990..e82e3974c5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -285,6 +285,7 @@ Debian Stable APT Package: - export DH_QUIET=1 - export MAKEFLAGS=--silent - dpkg-buildpackage -b --no-sign -jauto + - lintian --suppress-tags library-not-linked-against-libc,copyright-excludes-files-in-native-package --display-experimental --display-info --pedantic --profile debian - mkdir debian-packages - mv ../*.deb debian-packages/ artifacts: @@ -540,7 +541,6 @@ Ubuntu .dpkg: # build-ubuntu puts us in `build`. - cd .. - CC=/usr/lib/ccache/gcc CXX=/usr/lib/ccache/g++ MAKE=ninja dpkg-buildpackage -us -uc -rfakeroot -jauto -Zgzip -zfast - - lintian --suppress-tags library-not-linked-against-libc,copyright-excludes-files-in-native-package --display-experimental --display-info --pedantic --profile debian after_script: # dpkg-buildpackage builds in obj-, so we need to override # .build-ubuntu. We also build more stuff, so decrease our multiplier.