Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Griffith <dyl.griffith@gmail.com>2018-09-26 18:39:27 +0300
committerKamil TrzciƄski <ayufan@ayufan.eu>2018-09-26 18:39:27 +0300
commitf5f5d6ea1f816f2d695eca74b3923457dcccbdff (patch)
tree22b25ffd74a9012f9a8cba9f597d9db4ba50719e /lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml
parent82ea7195cdeab1f9177796517b7267cb7db0fae0 (diff)
Resolve "Un-vendor CI templates"
Diffstat (limited to 'lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml')
-rw-r--r--lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml b/lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml
new file mode 100644
index 00000000000..a4aed36889e
--- /dev/null
+++ b/lib/gitlab/ci/templates/LaTeX.gitlab-ci.yml
@@ -0,0 +1,11 @@
+# use docker image with latex preinstalled
+# since there is no official latex image, use https://github.com/blang/latex-docker
+# possible alternative: https://github.com/natlownes/docker-latex
+image: blang/latex
+
+build:
+ script:
+ - latexmk -pdf
+ artifacts:
+ paths:
+ - "*.pdf"