library/.gitlab-ci.yml

17 lines
351 B
YAML
Raw Normal View History

2018-12-01 22:10:32 +01:00
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/doxygen
2018-12-02 00:33:15 +01:00
image: ubuntu:trusty
2018-12-01 22:10:32 +01:00
pages:
script:
2018-12-02 00:33:15 +01:00
- apk update
- apl add graphviz
- 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