From a4a088779cb795af12c4d3d547b6c62b0e4e3eb8 Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Sun, 25 Nov 2018 00:51:32 +0100 Subject: [PATCH] =?UTF-8?q?I=E2=80=99m=20an=20idiot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e092039..7fccc9f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: nvidia/opengl:devel stages: - build + - pages cache: key: apt-cache @@ -18,3 +19,17 @@ build: - gcc --version - make debug - make release + +pages: + stage: build + image: ubuntu:trusty + script: + - export DEBIAN_FRONTEND=noninteractive + - apt-get -yq update + - apt-get -yq install graphviz + - apt-get -yq install doxygen + - cd doc && doxygen Doxyfile && cd .. + - mv docs/html/ public/ + artifacts: + paths: + - public