2021-08-11 10:54:26 +02:00
|
|
|
node {
|
|
|
|
stage('Pull git') {
|
|
|
|
checkout scm
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Build PDF') {
|
2021-08-11 11:10:08 +02:00
|
|
|
sh 'pdflatex Mathematik-V-ZF.tex'
|
2021-08-11 10:54:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('Archive PDF') {
|
2021-08-11 11:10:08 +02:00
|
|
|
archiveArtifacts artifacts: 'Mathematik-V-ZF.pdf', followSymlinks: false
|
2021-08-11 10:54:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('Publish PDF') {
|
2021-08-11 11:10:08 +02:00
|
|
|
sh 'scp -i /root/.ssh/id_rsa Mathematik-V-ZF.pdf jannis@192.168.178.45:/var/www/html/download/latex-previews/mathematik-v-zf.pdf'
|
2021-08-11 10:54:26 +02:00
|
|
|
}
|
|
|
|
}
|