Files
5e-a4-half-fold-booklet/Jenkinsfile
2018-08-08 09:37:50 +00:00

12 lines
158 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
}
}