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 | 957b31fb2be1dfabdef378e5f41817ec45b12cf0 (patch) | |
tree | d80cb1204e4226f12deb0f95ae37248b16bc7ebc /.gitlab-ci.yml | |
parent | Adding debian version 0.1.33. (diff) | |
download | debputy-957b31fb2be1dfabdef378e5f41817ec45b12cf0.tar.xz debputy-957b31fb2be1dfabdef378e5f41817ec45b12cf0.zip |
Merging upstream version 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 |