diff options
| -rw-r--r-- | .gitlab-ci.yml | 30 | 
1 files changed, 20 insertions, 10 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 83551e32..0934891e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -99,18 +99,28 @@ package:amd64_jessie:    variables:      ARCH: "amd64"      DIST: "jessie" -    REPONAMES: "platform" +    REPONAMES: "platform,client" +      # Default is to fail on warnings, we disable it here +    # unless a manpage is included (see #8895) +    LINTIAN_OPTS: "-X filename-length" +  <<: *job_definition + +package:amd64_stretch: +  variables: +    ARCH: "amd64" +    DIST: "stretch" +    REPONAMES: "platform,client"      # Default is to fail on warnings, we disable it here      # unless a manpage is included (see #8895)      LINTIAN_OPTS: "-X filename-length"    <<: *job_definition -# package:amd64_stretch: -#  variables: -#    ARCH: "amd64" -#    DIST: "stretch" -#    REPONAMES: "platform" -#    # Default is to fail on warnings, we disable it here -#    # unless a manpage is included (see #8895) -#    LINTIAN_OPTS: "-X filename-length" -#  <<: *job_definition +package:amd64_zesty: +  variables: +    ARCH: "amd64" +    DIST: "zesty" +    REPONAMES: "platform,client" +      # Default is to fail on warnings, we disable it here +    # unless a manpage is included (see #8895) +    LINTIAN_OPTS: "-X filename-length" +  <<: *job_definition  | 
