Browse Source

Removed dependency on Make

merge-requests/3/head
Drew Short 6 years ago
parent
commit
2ba4061e34
  1. 3
      .gitlab-ci.yml

3
.gitlab-ci.yml

@ -17,12 +17,11 @@ Atheneum:Pages:
image: python:3.6-slim-stretch image: python:3.6-slim-stretch
stage: pages stage: pages
script: script:
- apt install make
- python3 -m pip install pipenv - python3 -m pip install pipenv
- cd server - cd server
- pipenv install --dev --system - pipenv install --dev --system
- cd documentation - cd documentation
- make html
- sphinx-build -M html "." "_build"
- mv _build/html/ ../../public/ - mv _build/html/ ../../public/
artifacts: artifacts:
paths: paths:

Loading…
Cancel
Save