klayout/Jenkinsfile-publish-sources

18 lines
205 B
Plaintext
Raw Normal View History

2018-06-24 12:17:26 +02:00
@Library("osconfig") _
2020-03-29 10:41:27 +02:00
properties([disableConcurrentBuilds()])
node("linux") {
2018-06-24 12:19:21 +02:00
stage("Checkout sources") {
checkout scm
}
stage("Publish sources") {
publish_sources(BRANCH_NAME)
}
2018-06-24 12:17:26 +02:00
}