aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 3c8dafa2479813ffdbc874e5bd7141ef5a92668b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
stages:
  - build-pdf
  - build-svg

build-final:
  stage: build-pdf
  image: registry.gitlab.com/containers.ada/tectonic
  script:
    - tectonic heidelberg.tex
  artifacts:
    paths:
      - heidelberg.pdf
  rules:
    - changes:
      - "*.tex"

build-svg:
  stage: build-svg
  image: registry.gitlab.com/containers.ada/pdf2svg
  script:
    - pdf2svg heidelberg.svg
  artifacts:
    paths:
      - heidelberg.svg
  rules:
    - changes:
      - "*.tex"