library/.gitlab-ci.yml

15 lines
366 B
YAML
Raw Normal View History

2018-12-02 00:36:59 +01:00
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/doxygen
image: alpine
2018-12-01 22:10:32 +01:00
pages:
script:
2018-12-02 00:42:17 +01:00
- apk update && apk add graphviz && apk add ttf-freefont && apk add doxygen
2018-12-01 22:10:32 +01:00
- doxygen Doku/Doxygen/Doxyfile
- mv Doku/Doxygen/html/ public/
artifacts:
paths:
- public
only:
- master