Epoch/Jenkinsfile
2017-04-05 20:18:10 -07:00

10 lines
104 B
Groovy

pipeline {
agent none
stages {
stage('') {
steps {
echo 'test'
}
}
}
}