mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-22 14:07:15 +02:00
18 lines
206 B
Plaintext
18 lines
206 B
Plaintext
|
|
@Library("osconfig") _
|
|
|
|
properties([disableConcurrentBuilds()])
|
|
|
|
node("master") {
|
|
|
|
stage("Checkout sources") {
|
|
checkout scm
|
|
}
|
|
|
|
stage("Publish sources") {
|
|
publish_sources(BRANCH_NAME)
|
|
}
|
|
|
|
}
|
|
|