diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-11 17:11:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-11 17:11:02 +0000 |
commit | 503fe7dbcb39a6cf3f03e7b36cb3349f1fd321c5 (patch) | |
tree | 1c53ca0fa450a8997d7433b75cfa3bccdf189252 /.gitlab-ci.yml | |
parent | Adding upstream version 0.1.35. (diff) | |
download | debputy-503fe7dbcb39a6cf3f03e7b36cb3349f1fd321c5.tar.xz debputy-503fe7dbcb39a6cf3f03e7b36cb3349f1fd321c5.zip |
Adding upstream version 0.1.36.upstream/0.1.36
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d6cf11d..9f1b22e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,6 +41,15 @@ tests-ubuntu-noble: - dpkg-buildpackage -Ppkg.debputy.ci -us -uc -tc +tests-debian-bookwork-backports: + stage: os-build-tests + image: debian:bookworm-slim + script: + - apt-get update + - apt-get build-dep -Ppkg.debputy.ci,pkg.debputy.bookworm-backports -y . + - dpkg-buildpackage -Ppkg.debputy.ci,pkg.debputy.bookworm-backports -us -uc -tc + + code-lint-mypy: stage: ci-test image: debian:unstable-slim @@ -159,6 +168,45 @@ tests-ubuntu-noble-coverage-without-optional-bd: coverage_format: cobertura path: coverage.xml +tests-debian-bookworm-backports-coverage-with-extra-bd: + stage: ci-os-support + image: debian:bookworm-slim + script: + - apt-get update + - apt-get build-dep -Ppkg.debputy.ci,pkg.debputy.test-coverage,pkg.debputy.bookworm-backports -y . + - py.test-3 -v --cov --cov-branch --doctest-modules --junit-xml=xunit-report.xml --cov-report xml:coverage.xml + after_script: + - mkdir -p coverage-results/tests-ubuntu-noble-coverage-with-extra-bd + - cp .coverage coverage-results/tests-ubuntu-noble-coverage-with-extra-bd/coverage + artifacts: + paths: + - coverage-results/tests-ubuntu-noble-coverage-with-extra-bd + reports: + junit: xunit-report.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml + + +tests-debian-bookworm-backports-coverage-without-optional-bd: + stage: ci-os-support + image: debian:bookworm-slim + script: + - apt-get update + - apt-get build-dep -Ppkg.debputy.minimal-tests,pkg.debputy.test-coverage,pkg.debputy.bookworm-backports -y . + - py.test-3 -v --cov --cov-branch --doctest-modules --junit-xml=xunit-report.xml --cov-report xml:coverage.xml + after_script: + - mkdir -p coverage-results/tests-ubuntu-noble-coverage-without-optional-bd + - cp .coverage coverage-results/tests-ubuntu-noble-coverage-without-optional-bd/coverage + artifacts: + paths: + - coverage-results/tests-ubuntu-noble-coverage-without-optional-bd + reports: + junit: xunit-report.xml + coverage_report: + coverage_format: cobertura + path: coverage.xml + aggregate-coverage: stage: aggregate-coverage |