Unverified Commit 10f269bf authored by Vít Starý Novotný's avatar Vít Starý Novotný
Browse files

Add `.gitlab-ci.yml`

parent c482772a
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+23 −0
Original line number Original line Diff line number Diff line
image: texlive/texlive

stages:
  - build

Typeset documentation:
  stage: build
  tags:
    - shared-fi
  before_script:
    - apt-get -qy update
    - apt-get -qy install ghostscript zip
  script:
    - make base
    - make install-base to="$HOME"/texmf nohash=true
    - make dist
  artifacts:
    paths:
      - fithesis.tds.zip
      - fithesis.ctan.zip
      - fithesis.zip
      - fithesis.pdf
    expire_in: 1 week