blob: 33995bf82124a9deab6a116a4bba5abf97fdd66e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
image: ubuntu:14.04
pages:
stage: deploy
script:
- apt-get update
- apt-get install luarocks
- apt-get install python-sphinx
- apt-get install rsync
- luarocks install ldoc
- cd nerv/doc; make html; cd ../
- ldoc .; cd ../
- rsync -av nerv/doc/build/html/ public/
artifacts:
paths:
- public
only:
- master
|