Files
real_analysis/Jenkinsfile
Philippe Zwietering 549af36a07
Some checks failed
gitea/real_analysis/pipeline/head There was a failure building this commit
Added deploy and updated the readme accordingly
2024-05-05 00:01:08 +02:00

20 lines
529 B
Groovy

pipeline {
agent {label 'linux'}
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 'sudo cp assignments/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
}
}
}
}