All checks were successful
gitea/real_analysis/pipeline/head This commit looks good
20 lines
524 B
Groovy
20 lines
524 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 'cp assignments/main_text.pdf /var/www/zwietering.eu/pdfs/real_analysis.pdf'
|
|
}
|
|
}
|
|
}
|
|
} |