diff options
author | Determinant <[email protected]> | 2016-04-19 18:07:45 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2016-04-19 18:07:45 +0800 |
commit | 90612b4af11b2442be2f5a03912decfb7859210a (patch) | |
tree | b318d074b0b5d1025ea029494e2af2e6d07dcb6a /.gitlab-ci.yml | |
parent | 36288d822b1f367932bcb6ba596f01eade72aa26 (diff) |
...
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 ../ |