@@ -1,2 +0,0 @@
|
|||||||
FROM kjarosh/latex:2025.1
|
|
||||||
RUN tlmgr install libertinus
|
|
||||||
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@@ -2,9 +2,15 @@ pipeline {
|
|||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
agent { dockerfile true }
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'kjarosh/latex:2025.1'
|
||||||
|
reuseNode true
|
||||||
|
}
|
||||||
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Starting build step...'
|
echo 'Starting build step...'
|
||||||
|
sh 'tlmgr install libertinus'
|
||||||
sh 'latexmk -pdf -outdir=out main_text.tex'
|
sh 'latexmk -pdf -outdir=out main_text.tex'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user