klayout/Jenkinsfile-publish-sources

16 lines
165 B
Plaintext
Raw Normal View History

2018-06-26 01:03:39 +02:00
@Library("osconfig") _
node("master") {
stage("Checkout sources") {
checkout scm
}
stage("Publish sources") {
publish_sources(BRANCH_NAME)
}
}