Skip to content

Commit

Permalink
add gitlab.ci and doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromorgan committed Feb 6, 2019
1 parent 0222154 commit 5e86ba2
Show file tree
Hide file tree
Showing 3 changed files with 2,453 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

# where docs are output to on gitlab.. MUST be named public/
public/

.sass-cache/
.idea/

*.pyc


12 changes: 12 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
image: ubuntu

pages:
script:
- apt-get update -qq
- apt-get install -y -qq doxygen graphviz
- doxygen doxygen.conf
artifacts:
paths:
- public
only:
- master
Loading

0 comments on commit 5e86ba2

Please sign in to comment.