From d63e243515d4ee118a0cca35da1adfba3b6a3fb9 Mon Sep 17 00:00:00 2001 From: Sergi Hernandez <shernand@iri.upc.edu> Date: Mon, 19 Feb 2018 17:16:18 +0100 Subject: [PATCH] Added the script to generate the GIT pages from the doxygen documentation --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d3af3f7..84adc7e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,3 +28,12 @@ coverage: script: - cd Build - ctest --timeout 15 --verbose -T coverage + +pages: + script: + - cd Build + - make doc + - mv ../doc/html/ public/ + artifacts: + paths: + - public -- GitLab