diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:48:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-24 04:48:18 +0000 |
commit | cfbdef2d809aa9b8bab11d0baa82e4d1ecd72c30 (patch) | |
tree | 7a753f802255a2490e27a3637c5ae2dd054277dd /.gitlab-ci.yml | |
parent | Adding upstream version 0.1.33. (diff) | |
download | debputy-cfbdef2d809aa9b8bab11d0baa82e4d1ecd72c30.tar.xz debputy-cfbdef2d809aa9b8bab11d0baa82e4d1ecd72c30.zip |
Adding upstream version 0.1.34.upstream/0.1.34
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c0c5ccf..d6cf11d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -214,8 +214,13 @@ debputy-lint: stage: ci-test image: debian:sid-slim script: - - apt-get update -qq && apt-get -qq build-dep --no-install-recommends --yes . + - apt-get update -qq && apt-get -qq build-dep --no-install-recommends --yes . && apt-get -qq install --yes python3-levenshtein python3-junit.xml + - PERL5LIB=lib ./debputy.sh lint --lint-report-format=junit4-xml --report-output debputy-lint-report.xml + # Mostly just for the validation that --spellcheck does not crash - PERL5LIB=lib ./debputy.sh lint --spellcheck except: variables: - $CI_COMMIT_TAG != null && $SALSA_CI_ENABLE_PIPELINE_ON_TAGS !~ /^(1|yes|true)$/ + artifacts: + reports: + junit: debputy-lint-report.xml |