Merge pull request 'master' (#34) from master into release
All checks were successful
SHS Gitea/libs/pipeline/head This commit looks good
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:
21
Jenkinsfile
vendored
21
Jenkinsfile
vendored
@@ -39,3 +39,24 @@ node {
|
|||||||
sh "docker system prune -f"
|
sh "docker system prune -f"
|
||||||
echo "${_msg}"
|
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
2
pip
Submodule pip updated: 6b9fa87570...86b25303ef
Reference in New Issue
Block a user