Files
real_analysis/Jenkinsfile
Philippe Zwietering 7fbca3031a
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
Poging om jenkins uit het slop te trekken
2026-01-22 23:33:21 +01:00

26 lines
592 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Starting build step...'
sh 'latexmk -pdf -outdir=out main_text.tex'
}
}
// Testing latex isn't really a thing, but we could do basic sanity checks in the future?
stage('Deploy') {
steps{
echo 'Starting deploy step...'
sh 'cp out/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
}
}
}
post {
cleanup {
cleanWs()
}
}
}