1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
tests-stable-backports:
stage: test
image: debian:stable-backports
script:
- apt-get update
- apt-get build-dep -y .
- dpkg-buildpackage -us -uc -tc
tests-testing:
stage: test
image: debian:testing
script:
- apt-get update
- apt-get build-dep -y .
- dpkg-buildpackage -us -uc -tc
tests-unstable-all:
stage: test
image: debian:unstable
script:
- apt-get update
- apt-get build-dep -y -Ppkg.debhelper.ci .
- dpkg-buildpackage -us -uc -tc
tests-unstable:
stage: test
image: debian:unstable
script:
- apt-get update
- apt-get build-dep -y .
- dpkg-buildpackage -us -uc -tc
|