msspec_python3/Jenkinsfile

25 lines
514 B
Plaintext
Raw Normal View History

pipeline {
agent {label 'msspec_agent_amd64'}
stages {
2021-09-24 16:34:13 +02:00
stage('Building the code...') {
steps {
2021-09-24 16:34:13 +02:00
sh 'make devel PYTHON=python3'
2019-11-21 17:09:19 +01:00
}
}
stage('Building HTML documentation...') {
steps {
2021-09-24 16:50:08 +02:00
sh 'make doc PYTHON=python3'
2019-11-21 17:09:19 +01:00
}
}
stage('Syncing website...') {
steps {
2021-09-24 16:50:08 +02:00
echo 'Syncing website...'
2021-09-24 16:34:13 +02:00
// sh 'rm -rf $HOME/www/*'
// sh 'cp -a ./doc/build/html/* $HOME/www/'
2019-11-21 17:09:19 +01:00
}
}
}
}
2021-09-24 16:34:13 +02:00