library/.gitlab-ci.yml

16 lines
317 B
YAML

pages:
stage: build
image: ubuntu:trusty
script:
- export DEBIAN_FRONTEND=noninteractive
- apt-get -yq update
- apt-get -yq install graphviz
- apt-get -yq install doxygen
- doxygen Doku/Doxygen/Doxyfile
- mv Doku/Doxygen/html/ public/
artifacts:
paths:
- public
only:
- master