msspec_python3/Jenkinsfile

29 lines
745 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...'
sh '/bin/bash -c "source _venv/bin/activate && pip install sphinx lxml"'
sh '/bin/bash -c "source _venv/bin/activate && 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...'
}
}
}
}