msspec_python3/Jenkinsfile

28 lines
663 B
Plaintext
Raw Normal View History

pipeline {
agent {label 'msspec_agent_amd64'}
stages {
2021-06-30 15:02:54 +02:00
stage('Building the code...') {
steps {
2021-06-30 15:02:54 +02:00
echo 'make devel'
2019-11-21 17:09:19 +01:00
}
}
stage('Building HTML documentation...') {
steps {
2020-11-17 16:46:26 +01:00
echo 'building HTML...'
2021-06-30 15:02:54 +02:00
source _venv/bin/activate && pip install sphinx lxml && cd doc && make html
2019-11-21 17:09:19 +01:00
}
}
stage('Syncing website...') {
steps {
2020-11-17 16:46:26 +01:00
echo 'syncing website...'
2019-11-21 17:09:19 +01:00
}
}
stage('Cleaning up...') {
steps {
echo 'Cleaning artifacts...'
}
}
}
}