From 5addc81900fcf7e57f84c1abf12c968a58993e4d Mon Sep 17 00:00:00 2001
From: Oscar Gustafsson <oscar.gustafsson@liu.se>
Date: Fri, 2 Sep 2022 17:51:36 +0000
Subject: [PATCH] Try install Doxygen building and web pages.

---
 .gitlab-ci.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a954938f..e856e0cd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,6 @@
 stages:
  - test
+ - pages
 
 before_script:
   - apt-get update --yes
@@ -47,3 +48,12 @@ run-test-qt:
     - apt-get install --yes xvfb python3-pyqt5
     - pip install pytest-xvfb pytest-qt
     - pytest --cov=b_asic --cov-report xml:cov.xml --cov-report term test
+
+pages: 
+  image: python:3.10
+  script:
+     - apt-get install --yes doxygen
+     - doxygen
+  artifacts:
+    paths:
+      - doc/html
-- 
GitLab