mirror of https://github.com/KLayout/klayout.git
20 lines
246 B
Plaintext
20 lines
246 B
Plaintext
|
|
|
||
|
|
@Library("osconfig") _
|
||
|
|
|
||
|
|
node("master") {
|
||
|
|
|
||
|
|
stage("Checkout sources") {
|
||
|
|
checkout scm
|
||
|
|
}
|
||
|
|
|
||
|
|
stage("Producing doc") {
|
||
|
|
sh "./scripts/extract_user_doc.sh -i " + BRANCH_NAME
|
||
|
|
}
|
||
|
|
|
||
|
|
stage("Publish doc") {
|
||
|
|
publish_doc(BRANCH_NAME)
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|