File: .gitlab-ci.yml

package info (click to toggle)
pbuilder 0.231.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,864 kB
  • sloc: sh: 5,726; xml: 1,755; makefile: 248; ansic: 11
file content (22 lines) | stat: -rw-r--r-- 632 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
before_script:
    - apt-get -q update

test:
  image: debian:unstable
  script:
    - env DEBIAN_FRONTEND=noninteractive apt-get -q -y --no-install-recommends install dpkg-dev man-db
    - make check

pages:
  image: debian:unstable-slim
  script:
    - env DEBIAN_FRONTEND=noninteractive apt-get -q -y --no-install-recommends install make docbook-xsl ldp-docbook-xsl xsltproc po4a dblatex
    - make -C Documentation
    - mkdir -v public
    - mv -v Documentation/*.html Documentation/*.css Documentation/*pdf public/
    - ln -s -v pbuilder-doc.html public/index.html
  artifacts:
    paths:
      - public
  only:
    - master