klayout/Jenkinsfile-publish-sources

16 lines
165 B
Plaintext
Raw Normal View History

2018-06-24 12:17:26 +02:00
@Library("osconfig") _
node("master") {
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
}