library/.gitlab-ci.yml

16 lines
317 B
YAML
Raw Normal View History

2018-12-01 22:10:32 +01:00
pages:
2018-12-02 00:35:58 +01:00
stage: build
image: ubuntu:trusty
2018-12-01 22:10:32 +01:00
script:
2018-12-02 00:35:03 +01:00
- export DEBIAN_FRONTEND=noninteractive
- apt-get -yq update
- apt-get -yq install graphviz
- apt-get -yq install doxygen
2018-12-01 22:10:32 +01:00
- doxygen Doku/Doxygen/Doxyfile
- mv Doku/Doxygen/html/ public/
artifacts:
paths:
- public
only:
- master