File: .gitlab-ci.yml

package info (click to toggle)
dput-ng 1.43
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,052 kB
  • sloc: python: 3,927; makefile: 154; sh: 10
file content (21 lines) | stat: -rw-r--r-- 710 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
test:
  image: debian:unstable-slim
  before_script:
    - apt-get -q update
    - env DEBIAN_FRONTEND=noninteractive apt-get -q -y install --no-install-recommends aspcud apt-cudf
    - env DEBIAN_FRONTEND=noninteractive apt-get -q -y --solver aspcud -o APT::Solver::Strict-Pinning=0 -o Debug::pkgProblemResolver=yes build-dep .
  script:
    - env PYTHONPATH=. py.test -vv -l -r a

pages:
  image: debian:unstable-slim
  script:
    - apt-get -q update
    - env DEBIAN_FRONTEND=noninteractive apt-get -q -y --no-install-recommends install python3-sphinx make python3-dput python3-paramiko
    - make -C docs html
    - mv docs/_build/html/ public/
  artifacts:
    paths:
      - public
  only:
    - master