From 94b036884253a6c44cc1abfe615b63ddc3b64ed1 Mon Sep 17 00:00:00 2001 From: Aaron Kaiser Date: Fri, 10 Feb 2023 11:44:11 +0100 Subject: [PATCH] added ci --- .drone.yml | 11 +++++++++++ docker/Dockerfile | 5 +++++ Abschlussarbeit.tex => thesis/Abschlussarbeit.tex | 6 ++++-- Logo_RUB_BLAU_4c.eps => thesis/Logo_RUB_BLAU_4c.eps | 0 .../Logo_RUB_BLAU_srgb.jpg | Bin thesis/macros.tex | 0 thesisstyle.sty => thesis/thesisstyle.sty | 0 7 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .drone.yml create mode 100644 docker/Dockerfile rename Abschlussarbeit.tex => thesis/Abschlussarbeit.tex (95%) rename Logo_RUB_BLAU_4c.eps => thesis/Logo_RUB_BLAU_4c.eps (100%) rename Logo_RUB_BLAU_srgb.jpg => thesis/Logo_RUB_BLAU_srgb.jpg (100%) create mode 100644 thesis/macros.tex rename thesisstyle.sty => thesis/thesisstyle.sty (100%) diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6f2b80f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,11 @@ +--- +kind: pipeline +type: docker +name: default + +steps: +- name: build + image: gitea.rixxc.de/rixxc/ma-latex:latest + commands: + - pdflatex -synctex=1 -interaction=nonstopmode thesis/"Abschlussarbeit".tex + - pdflatex -synctex=1 -interaction=nonstopmode thesis/"Abschlussarbeit".tex diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..d419a7b --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,5 @@ +FROM pandoc/latex + +RUN tlmgr install koma-script xpatch enumitem preprint braket algorithm2e ifoddpage relsize cancel cite + +CMD /bin/bash diff --git a/Abschlussarbeit.tex b/thesis/Abschlussarbeit.tex similarity index 95% rename from Abschlussarbeit.tex rename to thesis/Abschlussarbeit.tex index d5ba49c..5a46189 100644 --- a/Abschlussarbeit.tex +++ b/thesis/Abschlussarbeit.tex @@ -11,12 +11,14 @@ listof=totoc, \usepackage{thesisstyle} \begin{document} +\include{macros.tex} + \thispagestyle{empty} \begin{center} \textbf{\huge{\vspace{3em}\\ -Titel +A formal Security Analysis of the EdDSA Signature Scheme \vspace{3mm} }} @@ -58,7 +60,7 @@ Aaron Kaiser \begin{abstract} -%Abstract +abstract \end{abstract} diff --git a/Logo_RUB_BLAU_4c.eps b/thesis/Logo_RUB_BLAU_4c.eps similarity index 100% rename from Logo_RUB_BLAU_4c.eps rename to thesis/Logo_RUB_BLAU_4c.eps diff --git a/Logo_RUB_BLAU_srgb.jpg b/thesis/Logo_RUB_BLAU_srgb.jpg similarity index 100% rename from Logo_RUB_BLAU_srgb.jpg rename to thesis/Logo_RUB_BLAU_srgb.jpg diff --git a/thesis/macros.tex b/thesis/macros.tex new file mode 100644 index 0000000..e69de29 diff --git a/thesisstyle.sty b/thesis/thesisstyle.sty similarity index 100% rename from thesisstyle.sty rename to thesis/thesisstyle.sty