1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
image: registry.gitlab.com/eighthave/ci-image-git-buildpackage:latest
# Use build-dependencies from unstable
build:
script:
- gitlab-ci-git-buildpackage
- gitlab-ci-lintian
# There is no autopkgtests for slgdbm
# - gitlab-ci-autopkgtest
# Use gdbm dependency from experimental, rest dependencies from
# experimental (transition of gdbm: 1.14.1 -> 1.16)
pages:
stage: deploy
artifacts:
paths:
- public
script:
- cp debian/ci/apt.preferences /etc/apt/preferences
- gitlab-ci-git-buildpackage
- gitlab-ci-lintian
# There is no autopkgtests for slgdbm
# - gitlab-ci-autopkgtest
- gitlab-ci-aptly
|