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
|