Add the build doc target in Jenkins

This commit is contained in:
Sylvain Tricot 2021-06-30 15:02:54 +02:00
parent 4ec4335431
commit c3ab5d5a07
1 changed files with 3 additions and 18 deletions

21
Jenkinsfile vendored
View File

@ -1,30 +1,15 @@
pipeline {
agent {label 'msspec_agent_amd64'}
stages {
stage('Initial setup...') {
stage('Building the code...') {
steps {
echo 'Create or update the virtual Python environment'
}
}
stage('Build the code and generate tests results...') {
steps {
echo 'building..'
}
}
stage('Create a setup file...') {
steps {
echo 'creating Python pip file...'
}
}
stage('Test installation...') {
steps {
echo 'testing the install process...'
echo 'make devel'
}
}
stage('Building HTML documentation...') {
steps {
echo 'building HTML...'
source _venv/bin/activate && pip install sphinx lxml && cd doc && make html
}
}
stage('Syncing website...') {