From 8a3bf97b44016329ab66383b270209a52977cbdf Mon Sep 17 00:00:00 2001 From: Yifan Zhao <yifanz16@illinois.edu> Date: Fri, 26 Mar 2021 16:59:22 -0500 Subject: [PATCH] Fixed gitlab-ci --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1fcc749cc9..2b2f46e1ce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,11 @@ image: python:3.7-alpine build_sphinx: stage: build + tags: + - hpvm script: - - pip install -U sphinx sphinx-autodoc-typehints sphinx-rtd-theme numpydoc - - sphinx-build -b html . public + - pip install -U sphinx sphinx-autodoc-typehints sphinx-rtd-theme numpydoc + - sphinx-build -b html hpvm/docs/ public/ + artifacts: + paths: + - public -- GitLab