Skip to content
Snippets Groups Projects
.gitlab-ci.yml 374 B
Newer Older
  • Learn to ignore specific revisions
  • 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