2019-11-19 13:20:48 +01:00
|
|
|
pipeline {
|
|
|
|
agent {label 'msspec_agent_amd64'}
|
|
|
|
stages {
|
2021-06-30 15:02:54 +02:00
|
|
|
stage('Building the code...') {
|
2019-11-19 13:20:48 +01:00
|
|
|
steps {
|
2021-06-30 15:31:55 +02:00
|
|
|
sh 'make devel'
|
2019-11-21 17:09:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Building HTML documentation...') {
|
|
|
|
steps {
|
2021-06-30 15:25:14 +02:00
|
|
|
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...'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 13:20:48 +01:00
|
|
|
}
|
|
|
|
}
|