Jenkinsfile pip doc
Some checks failed
pipdoc/pipeline/head There was a failure building this commit

This commit is contained in:
2020-05-28 14:04:35 +03:00
parent 87f49853b2
commit 2945c07a31

13
Jenkinsfile vendored
View File

@@ -37,5 +37,18 @@ node {
}
}
sh "docker system prune -f"
stage("PIP doc") {
agent {
label 'master'
}
checkout scm
sh "rm -rf share"
sh "rm -v *.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"
archiveArtifacts 'pip_doc.zip'
}
echo "${_msg}"
}