Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LaTeX.gitlab-ci.yml « gitlab-ci-yml « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4aed36889ee1995c14ef30273fedc8d3a680fff (plain)
1
2
3
4
5
6
7
8
9
10
11
# use docker image with latex preinstalled
# since there is no official latex image, use https://github.com/blang/latex-docker
# possible alternative: https://github.com/natlownes/docker-latex
image: blang/latex

build:
  script:
    - latexmk -pdf
  artifacts:
    paths:
      - "*.pdf"