Files
real_analysis/Jenkinsfile
Philippe Zwietering 9e486162f7
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
Nieuwe Jenkins setup testen
2025-02-23 22:27:36 +01:00

21 lines
513 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Starting build step...'
sh './scripts/build.sh'
}
}
// 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 assignments/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
}
}
}
}