Epoch/Jenkinsfile

10 lines
104 B
Plaintext
Raw Normal View History

2017-04-06 03:18:10 +00:00
pipeline {
agent none
stages {
stage('') {
steps {
echo 'test'
}
}
}
}