klayout/Jenkinsfile-publish-doc

20 lines
230 B
Plaintext

@Library("osconfig") _
node("master") {
stage("Checkout sources") {
checkout scm
}
stage("Producing doc") {
sh "./scripts/extract_user_doc.sh"
}
stage("Publish doc") {
//publish_doc(BRANCH_NAME)
}
}