From 1b061e717e9b135496813bee0298f655ffee138c Mon Sep 17 00:00:00 2001 From: Tue Herlau <tuhe@dtu.dk> Date: Tue, 20 Sep 2022 00:17:58 +0200 Subject: [PATCH] converter cli + tests --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 014c986..fff6bbd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -74,7 +74,7 @@ stages: - apt install -y xvfb # Virtual framebuffer for GL stuff. - apt install -y inkscape pdftk - apt install -y latexmk poppler-utils # latexmk and pdftocairo - - apt install -y texlive-latex-recommended texlive-latex-extra texlive-science pdf2svg + - DEBIAN_FRONTEND='noninteractive' apt install -y texlive-latex-recommended texlive-latex-extra texlive-science pdf2svg - pip install -U Pillow - pip install -e ./ - cd tests @@ -110,11 +110,11 @@ pages: script: - echo "Building the documentation." - pwd - - apt-get update + - apt-get -y update - apt install -y git - apt install -y inkscape pdftk # pdftk to grap pdf pages (only for converter; can probably be omitted). - apt install -y latexmk poppler-utils # latexmk and pdftocairo - - apt install -y texlive-latex-recommended texlive-latex-extra texlive-science pdf2svg + - DEBIAN_FRONTEND='noninteractive' apt install -y texlive-latex-recommended texlive-latex-extra texlive-science pdf2svg - pip install -U Pillow - pip install -e ./ - apt install -y python-opengl xvfb # Virtual framebuffer for GL stuff. -- GitLab