From 6ae10a254986d7e3a9769eef1f0b91e17566876e Mon Sep 17 00:00:00 2001 From: Marco Ammon Date: Fri, 13 Sep 2019 12:03:24 +0200 Subject: [PATCH] =?UTF-8?q?Gitlab-CI=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6a2b4cc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,29 @@ +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