30 lines
640 B
YAML
30 lines
640 B
YAML
|
zusammenfassungPDF:
|
||
|
image: tianon/latex
|
||
|
script:
|
||
|
- make
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- zusammenfassung.pdf
|
||
|
|
||
|
|
||
|
|
||
|
# Generische Regel für auf Debian basierende Distributionen
|
||
|
.debianoide:
|
||
|
only:
|
||
|
- master@my04mivo/pacl-zusammenfassung
|
||
|
before_script:
|
||
|
- ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime
|
||
|
- export DEBIAN_FRONTEND=noninteractive
|
||
|
- apt-get update -qq && apt-get install -y -qq make texlive-full latexmk
|
||
|
script:
|
||
|
- cat /etc/os-release
|
||
|
- make
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- zusammenfassung.pdf
|
||
|
|
||
|
# Latest (rolling) Ubuntu Release
|
||
|
ubuntuRolling:
|
||
|
extends: .debianoide
|
||
|
image: ubuntu:rolling
|