diff options
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 |