29 lines
743 B
Groovy
29 lines
743 B
Groovy
pipeline {
|
|
agent {label 'msspec_agent_amd64'}
|
|
stages {
|
|
stage('Building the code...') {
|
|
steps {
|
|
echo 'make devel'
|
|
}
|
|
}
|
|
stage('Building HTML documentation...') {
|
|
steps {
|
|
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"
|
|
}
|
|
}
|
|
stage('Syncing website...') {
|
|
steps {
|
|
echo 'syncing website...'
|
|
}
|
|
}
|
|
stage('Cleaning up...') {
|
|
steps {
|
|
echo 'Cleaning artifacts...'
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|