Add .gitlab-ci.yml

Signed-off-by: zisi <agzisim@gmail.com>
merge-requests/5/head
zisi 2018-08-27 16:03:42 +03:00
parent a2ed1c15f2
commit d07a625d5b
1 changed files with 23 additions and 0 deletions

23
gitlab-ci.yml 100644
View File

@ -0,0 +1,23 @@
image: alpine
before_script:
- apk update
- apk add doxygen
## Uncomment the following line if you use graphviz dot graphs
- apk add ttf-freefont graphviz
test:
script:
- doxygen satnogs-rotator-firmware.doxyfile
except:
- master
pages:
script:
- doxygen satnogs-rotator-firmware.doxyfile
- mv doxygen_files/html/ public/
artifacts:
paths:
- public
only:
- master