From 0f8cc28eef0b3e33a0faabe5f33bd2531cc9efb4 Mon Sep 17 00:00:00 2001 From: mjturt <maks.turtiainen@gmail.com> Date: Thu, 16 Apr 2020 01:58:30 +0300 Subject: [PATCH] Fixed .gitlab-ci-simple.yml --- .gitlab-ci-simple.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci-simple.yml b/.gitlab-ci-simple.yml index c2dddb7..1ad8843 100644 --- a/.gitlab-ci-simple.yml +++ b/.gitlab-ci-simple.yml @@ -1,4 +1,3 @@ - # see https://hub.docker.com/repository/docker/konttipoju/tinytex image: konttipoju/tinytex:2019-12g @@ -10,14 +9,16 @@ stages: # build latex/thesis.tex -> latex/thesis.pdf using pdflatex # shell-escape functionality is required by the minted package build: + stage: build script: - cd latex - latexmk -pdf --shell-escape thesis.tex -artifacts: - paths: + artifacts: + paths: - latex/thesis.pdf # a validation prints "PASS + something" is the file is PDF/A conformant validate: + stage: validate script: - pdfa-validate latex/thesis.pdf|grep '^PASS' -- GitLab