mirror of https://github.com/KLayout/klayout.git
16 lines
165 B
Plaintext
16 lines
165 B
Plaintext
|
|
|
||
|
|
@Library("osconfig") _
|
||
|
|
|
||
|
|
node("master") {
|
||
|
|
|
||
|
|
stage("Checkout sources") {
|
||
|
|
checkout scm
|
||
|
|
}
|
||
|
|
|
||
|
|
stage("Publish sources") {
|
||
|
|
publish_sources(BRANCH_NAME)
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|