Merge pull request 'master' (#34) from master into release
All checks were successful
SHS Gitea/libs/pipeline/head This commit looks good

This commit was merged in pull request #34.
This commit is contained in:
2020-05-28 17:34:27 +03:00
2 changed files with 22 additions and 1 deletions

21
Jenkinsfile vendored
View File

@@ -39,3 +39,24 @@ node {
sh "docker system prune -f"
echo "${_msg}"
}
pipeline {
agent {
label 'master'
}
stages {
stage("PIP doc") {
steps {
checkout scm
sh "rm -rf share"
sh "rm -vf *.zip"
sh "mkdir -p build"
sh "cd build && cmake -DLIB=0 -DCMAKE_INSTALL_PREFIX=`pwd` ../"
sh "cd build && make doc"
sh "cd share/doc && zip -r ../../pip_doc.zip pip"
sh "cp share/doc/pip/html/index.qhp pip_doc.qhp"
archiveArtifacts 'pip_doc.zip'
archiveArtifacts 'pip_doc.qhp'
}
}
}
}

2
pip

Submodule pip updated: 6b9fa87570...86b25303ef