diff options
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a8bf29e2..82856468 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -167,7 +167,17 @@ package:amd64_stretch: DIST: "stretch" REPONAMES: "platform,client" # Default is to fail on warnings, we disable it here - # unless a manpage is included (see #8895) + # unless all lintian warnings are fixed (#9033) + LINTIAN_OPTS: "-X filename-length" + <<: *job_definition + +package:amd64_buster: + variables: + ARCH: "amd64" + DIST: "buster" + REPONAMES: "platform,client" + # Default is to fail on warnings, we disable it here + # unless all lintian warnings are fixed (#9033) LINTIAN_OPTS: "-X filename-length" <<: *job_definition @@ -177,6 +187,6 @@ package:amd64_zesty: DIST: "zesty" REPONAMES: "client" # Default is to fail on warnings, we disable it here - # unless a manpage is included (see #8895) + # unless all lintian warnings are fixed (#9033) LINTIAN_OPTS: "-X filename-length" <<: *job_definition |