aboutsummaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 76364939a904186ea9ba6ed0940662a2a78b78eb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                   





                                 








                                          
image: ubuntu:14.04

pages:
  stage: deploy
  script:
  - apt-get update -y
  - apt-get install luarocks -y
  - apt-get install python-pip -y
  - pip install sphinx
  - apt-get install rsync -y
  - apt-get install make -y
  - luarocks install ldoc
  - cd nerv/doc; make html; cd ../
  - ldoc .; cd ../
  - rsync -av nerv/doc/build/html/ public/
  artifacts:
    paths:
    - public
  only:
  - master