From a66c802d7968c2dddf19ef5b3d7a7e1d383dd792 Mon Sep 17 00:00:00 2001 From: "Fifo F." Date: Mon, 26 Feb 2024 23:25:05 +0000 Subject: [PATCH] Add new file --- .gitlab-ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b834f5e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,27 @@ +# This file is a template, and might need editing before it works on your project. +# To contribute improvements to CI/CD templates, please follow the Development guide at: +# https://docs.gitlab.com/ee/development/cicd/templates.html +# This specific template is located at: +# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml + +--- +variables: + # Feel free to choose the image that suits you best. + # blang/latex:latest ... Former image used in this template. No longer maintained by author. + # listx/texlive:2020 ... The default, referring to TexLive 2020. Current at least to 2021-02-02. + + # Additional alternatives with high Docker pull counts: + # thomasweise/docker-texlive-full + # thomasweise/texlive + # adnrv/texlive + LATEX_IMAGE: listx/texlive:2020 + +build: + image: $LATEX_IMAGE + script: + - lualatex Dr-Jekyll-and-Mr-Hyde.tex + - lualatex Dr-Jekyll-and-Mr-Hyde.tex + + artifacts: + paths: + - "*.pdf"