mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-28 17:06:31 +02:00
18 lines
205 B
Plaintext
18 lines
205 B
Plaintext
|
|
@Library("osconfig") _
|
|
|
|
properties([disableConcurrentBuilds()])
|
|
|
|
node("linux") {
|
|
|
|
stage("Checkout sources") {
|
|
checkout scm
|
|
}
|
|
|
|
stage("Publish sources") {
|
|
publish_sources(BRANCH_NAME)
|
|
}
|
|
|
|
}
|
|
|