File: .gitlab-ci.yml

package info (click to toggle)
debhelper 13.24.2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 5,344 kB
  • sloc: perl: 14,683; makefile: 131; sh: 9
file content (31 lines) | stat: -rw-r--r-- 644 bytes parent folder | download | duplicates (4)
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