Poging om jenkins uit het slop te trekken
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit

This commit is contained in:
2026-01-22 23:33:21 +01:00
parent 12ba818631
commit 7fbca3031a

8
Jenkinsfile vendored
View File

@@ -2,12 +2,6 @@ pipeline {
agent any
stages {
stage('Build') {
agent {
docker {
image 'kjarosh/latex:2025.1'
reuseNode true
}
}
steps {
echo 'Starting build step...'
sh 'latexmk -pdf -outdir=out main_text.tex'
@@ -19,7 +13,7 @@ pipeline {
stage('Deploy') {
steps{
echo 'Starting deploy step...'
sh 'cp assignments/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
sh 'cp out/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
}
}
}