Files
klayout/Jenkinsfile-publish-doc
T

22 lines
287 B
Plaintext
Raw Normal View History

2018-06-24 16:10:49 +02:00
@Library("osconfig") _
2020-03-29 10:41:27 +02:00
properties([disableConcurrentBuilds()])
2018-06-24 16:10:49 +02:00
node("master") {
stage("Checkout sources") {
checkout scm
}
stage("Producing doc") {
2018-06-24 18:11:40 +02:00
sh "./scripts/extract_user_doc.sh -i " + BRANCH_NAME
2018-06-24 16:10:49 +02:00
}
stage("Publish doc") {
2018-06-24 18:24:13 +02:00
publish_doc(BRANCH_NAME)
2018-06-24 16:10:49 +02:00
}
}