Epoch/Jenkinsfile
2017-04-05 20:28:57 -07:00

16 lines
210 B
Groovy

pipeline {
agent none
stages {
stage('Checkout') {
steps {
ws(dir: 'C:/GITTEMP') {
script {
checkout scm
}
}
}
}
}
}