AMDVLK/Jenkinsfile
2018-03-23 16:49:32 -04:00

10 lines
123 B
Groovy

pipeline {
agent any
stages {
stage('Example Build') {
steps {
echo 'Hello World'
}
}
}
}