diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33995bf..7636493 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,10 +3,12 @@ image: ubuntu:14.04 pages: stage: deploy script: - - apt-get update - - apt-get install luarocks - - apt-get install python-sphinx - - apt-get install rsync + - 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 ../ |