Skip to content
Snippets Groups Projects
Forked from iMSTK / iMSTK
966 commits behind the upstream repository.
.gitlab-ci.yml 374 B
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 Doxyfile
  except:
  - master
  
pages:
  script:
  - cd Docs
  - mkdir html
  - cd ..
  - doxygen Doxyfile
  - mv Docs/html/ public/
  artifacts:
    paths:
    - public
  only:
  - master