blob: 76364939a904186ea9ba6ed0940662a2a78b78eb (
plain) (
tree)
|
|
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
|